R 中所有列向量的相关性 (dplyr)

发布于 2025-01-10 03:44:25 字数 932 浏览 1 评论 0原文

我在 R 中有一个数据框(取自 dplyr 网站 此处

library(dplyr)
gdf <-
  tibble(g = c(1, 1, 2, 3), v1 = 10:13, v2 = 20:23) %>%
  group_by(g)
gdf

: :

# A tibble: 4 × 3
# Groups:   g [3]
      g    v1    v2
  <dbl> <int> <int>
1     1    10    20
2     1    11    21
3     2    12    22
4     3    13    23

现在我有一个向量:

y <- rnorm(4);y

我想同时测量 y 与 v1 的相关性以及 y 与 v2 的相关性。

across() 函数可能可以完成这项工作

gdf %>% mutate(across(v1:v2, ~ cor(.x,y)))

,但 R 报告我一个错误:

Error: Problem with `mutate()` input `..1`.
ℹ `..1 = across(v1:v2, ~cor(.x, y))`.
x incompatible dimensions
ℹ The error occurred in group 1: g = 1.
Run `rlang::last_error()` to see where the error occurred.

I have a data frame in R (taken from the dplyr's site here):

library(dplyr)
gdf <-
  tibble(g = c(1, 1, 2, 3), v1 = 10:13, v2 = 20:23) %>%
  group_by(g)
gdf

Resulting to:

# A tibble: 4 × 3
# Groups:   g [3]
      g    v1    v2
  <dbl> <int> <int>
1     1    10    20
2     1    11    21
3     2    12    22
4     3    13    23

Now I have a vector :

y <- rnorm(4);y

I want to measure the correlation of y with v1 and the correlation of y with v2 simultaneously.

The across() function might do the job

gdf %>% mutate(across(v1:v2, ~ cor(.x,y)))

but R reports me an error :

Error: Problem with `mutate()` input `..1`.
ℹ `..1 = across(v1:v2, ~cor(.x, y))`.
x incompatible dimensions
ℹ The error occurred in group 1: g = 1.
Run `rlang::last_error()` to see where the error occurred.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故事与诗 2025-01-17 03:44:25

由于 cor() 要求 xy 具有相同的维度,因此您不能将行分组在一起,否则它们将没有 4 个元素可以匹配y 中有 4 个值。

准备数据和库

library(dplyr)

gdf <-
  tibble(g = c(1, 1, 2, 3), v1 = 10:13, v2 = 20:23)

y <- rnorm(4)
[1] 0.59390132 0.91897737 0.78213630 0.07456498

mutate()

如果要在输出中保留 v1v2,请使用 .names 参数来指示新的专栏。 {.col} 指的是 across 正在作用的列名称。

gdf %>% mutate(across(v1:v2, ~ cor(.x,y), .names = "{.col}_cor"))

# A tibble: 4 x 5
      g    v1    v2 v1_cor v2_cor
  <dbl> <int> <int>  <dbl>  <dbl>
1     1    10    20 -0.591 -0.591
2     1    11    21 -0.591 -0.591
3     2    12    22 -0.591 -0.591
4     3    13    23 -0.591 -0.591

summarise()

如果您只想在结果中输出 cor() ,则可以使用 summarise

gdf %>% summarize(across(v1:v2, ~ cor(.x,y)))

# A tibble: 1 x 2
      v1     v2
   <dbl>  <dbl>
1 -0.591 -0.591

Since cor() requires same dimension for both x and y, you cannot group rows together, otherwise, they will not have 4 elements to match with 4 values in y.

Prepare data and library

library(dplyr)

gdf <-
  tibble(g = c(1, 1, 2, 3), v1 = 10:13, v2 = 20:23)

y <- rnorm(4)
[1] 0.59390132 0.91897737 0.78213630 0.07456498

mutate()

If you want to keep v1 and v2 in the output, use the .names argument to indicate the names of the new columns. {.col} refers to the column name that across is acting on.

gdf %>% mutate(across(v1:v2, ~ cor(.x,y), .names = "{.col}_cor"))

# A tibble: 4 x 5
      g    v1    v2 v1_cor v2_cor
  <dbl> <int> <int>  <dbl>  <dbl>
1     1    10    20 -0.591 -0.591
2     1    11    21 -0.591 -0.591
3     2    12    22 -0.591 -0.591
4     3    13    23 -0.591 -0.591

summarise()

If you only want the cor() output in the results, you can use summarise

gdf %>% summarize(across(v1:v2, ~ cor(.x,y)))

# A tibble: 1 x 2
      v1     v2
   <dbl>  <dbl>
1 -0.591 -0.591
同展鸳鸯锦 2025-01-17 03:44:25

使用基本 R:

cor(gdf[,-1], y)

#>         [,1]
#> v1 0.5080586
#> v2 0.5080586

另一种可能的解决方案,基于 purrr::map_dfc:

library(tidyverse)

gdf <-
  tibble(g = c(1, 1, 2, 3), v1 = 10:13, v2 = 20:23)

set.seed(123)
y <- rnorm(4)

map_dfc(gdf[,-1], ~ cor(.x, y))

#> # A tibble: 1 × 2
#>      v1    v2
#>   <dbl> <dbl>
#> 1 0.508 0.508

Using base R:

cor(gdf[,-1], y)

#>         [,1]
#> v1 0.5080586
#> v2 0.5080586

Another possible solution, based on purrr::map_dfc:

library(tidyverse)

gdf <-
  tibble(g = c(1, 1, 2, 3), v1 = 10:13, v2 = 20:23)

set.seed(123)
y <- rnorm(4)

map_dfc(gdf[,-1], ~ cor(.x, y))

#> # A tibble: 1 × 2
#>      v1    v2
#>   <dbl> <dbl>
#> 1 0.508 0.508
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文