當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R corrr rplot 繪製相關 DataFrame 。


使用 ggplot2 繪製相關 DataFrame 。

用法

rplot(
  rdf,
  legend = TRUE,
  shape = 16,
  colours = c("indianred2", "white", "skyblue1"),
  print_cor = FALSE,
  colors,
  .order = c("default", "alphabet")
)

參數

rdf

相關數據幀(請參閱 correlate )或可以強製為一的對象(請參閱 as_cordf )。

legend

布爾值,指示是否應顯示將顏色映射到相關性的圖例。

shape

geom_point美學。

colours, colors

用於 n-color 漸變的顏色向量。

print_cor

指示是否應在形狀上打印相關性的布爾值。

.order

"default"(表示 x 和 y 變量與 x 中的列保持相同的順序)或 "alphabet"(表示變量按字母順序排列)。

繪製相關 DataFrame

細節

相關 DataFrame 中的每個值由輸出圖中的一個點/圓表示。每個點的大小對應於相關性的絕對值(通過size美學)。每個點的顏色對應於相關性的有符號值(通過color美學)。

例子

x <- correlate(mtcars)
#> Correlation computed with
#> • Method: 'pearson'
#> • Missing treated using: 'pairwise.complete.obs'
rplot(x)


# Common use is following rearrange and shave
x <- rearrange(x, absolute = FALSE)
x <- shave(x)
rplot(x)

rplot(x, print_cor = TRUE)

rplot(x, shape = 20, colors = c("red", "green"), legend = TRUE)

源代碼:R/output.R

相關用法


注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Plot a correlation data frame.。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。