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


R corrr dice 返回僅包含選定字段的關聯表


返回僅包含選定字段的關聯表

用法

dice(x, ...)

參數

x

相關表,類cor_df

...

相關表中的變量列表

例子


dice(correlate(mtcars), mpg, wt, am)
#> Correlation computed with
#> • Method: 'pearson'
#> • Missing treated using: 'pairwise.complete.obs'
#> # A tibble: 3 × 4
#>   term     mpg     wt     am
#>   <chr>  <dbl>  <dbl>  <dbl>
#> 1 mpg   NA     -0.868  0.600
#> 2 wt    -0.868 NA     -0.692
#> 3 am     0.600 -0.692 NA    
源代碼:R/reshape.R

相關用法


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