stretch
是應用於相關數據幀的tidyr::gather()的指定實現。它將把列收集到 long-format DataFrame 中。術語列是自動處理的。
參數
- x
-
cor_df。請參閱
correlate
。 - na.rm
-
布爾值。是否應該刪除具有 NA 相關性(最初是矩陣對角線)的行?如果鏡像為 FALSE,將自動設置為 TRUE。
- remove.dups
-
刪除重複條目,而不刪除所有 NA
例子
x <- correlate(mtcars)
#> Correlation computed with
#> • Method: 'pearson'
#> • Missing treated using: 'pairwise.complete.obs'
stretch(x) # Convert all to long format
#> # A tibble: 121 × 3
#> x y r
#> <chr> <chr> <dbl>
#> 1 mpg mpg NA
#> 2 mpg cyl -0.852
#> 3 mpg disp -0.848
#> 4 mpg hp -0.776
#> 5 mpg drat 0.681
#> 6 mpg wt -0.868
#> 7 mpg qsec 0.419
#> 8 mpg vs 0.664
#> 9 mpg am 0.600
#> 10 mpg gear 0.480
#> # … with 111 more rows
#> # ℹ Use `print(n = ...)` to see more rows
stretch(x, na.rm = TRUE) # omit NAs (diagonal in this case)
#> # A tibble: 110 × 3
#> x y r
#> <chr> <chr> <dbl>
#> 1 mpg cyl -0.852
#> 2 mpg disp -0.848
#> 3 mpg hp -0.776
#> 4 mpg drat 0.681
#> 5 mpg wt -0.868
#> 6 mpg qsec 0.419
#> 7 mpg vs 0.664
#> 8 mpg am 0.600
#> 9 mpg gear 0.480
#> 10 mpg carb -0.551
#> # … with 100 more rows
#> # ℹ Use `print(n = ...)` to see more rows
x <- shave(x) # use shave to set upper triangle to NA and then...
stretch(x, na.rm = TRUE) # omit all NAs, therefore keeping each
#> # A tibble: 55 × 3
#> x y r
#> <chr> <chr> <dbl>
#> 1 mpg cyl -0.852
#> 2 mpg disp -0.848
#> 3 mpg hp -0.776
#> 4 mpg drat 0.681
#> 5 mpg wt -0.868
#> 6 mpg qsec 0.419
#> 7 mpg vs 0.664
#> 8 mpg am 0.600
#> 9 mpg gear 0.480
#> 10 mpg carb -0.551
#> # … with 45 more rows
#> # ℹ Use `print(n = ...)` to see more rows
# correlation only once.
相關用法
- R corrr shave 剃掉上/下三角形。
- R corrr retract 從拉伸的相關表創建 DataFrame
- R corrr as_cordf 強製列表和矩陣關聯數據幀
- R corrr rearrange 重新排列相關 DataFrame
- R corrr correlate 相關 DataFrame
- R corrr pair_n 成對完整案例的數量。
- R corrr dice 返回僅包含選定字段的關聯表
- R corrr colpair_map 將函數應用於 DataFrame 中的所有列對
- R corrr autoplot.cor_df 從 cor_df 對象創建相關矩陣
- R corrr as_matrix 將相關數據幀轉換為矩陣格式
- R corrr focus_if 有條件地聚焦相關 DataFrame
- R corrr rplot 繪製相關 DataFrame 。
- R corrr first_col 將第一列添加到 data.frame
- R corrr focus 關注相關 DataFrame 架的部分。
- R corrr fashion 設計用於打印的相關 DataFrame 架。
- R corrr network_plot 相關 DataFrame 的網絡圖
- R SparkR corr用法及代碼示例
- R findGlobals 查找閉包使用的全局函數和變量
- R SparkR count用法及代碼示例
- R SparkR column用法及代碼示例
- R SparkR columns用法及代碼示例
- R checkUsage 檢查 R 代碼是否存在可能的問題
- R showTree R 表達式的打印 Lisp 風格表示
- R compile 字節碼編譯器
- R SparkR cov用法及代碼示例
注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Stretch correlation data frame into long format.。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。