【发布时间】:2021-08-06 10:31:10
【问题描述】:
我有一个包含列表类型列的数据框:
h1 h2 h3
1 6, 5.25 66, 4.2 4, 4.2
2 5, 11 7, 10 7, 10
3 6, 11 16, 11 16, 11
4 6, 0.25 7, 2.50 7, 7.77
我想将每列中的第一个值与第二个值相乘,所以在h1this 中将是6*5.25、5*11、6*11 等。
我在dplyr 中尝试过这段代码,但它给出了一个错误:
library(dplyr)
df0 %>%
mutate(across(c(everything()),
~ as.numeric(.x)[1]*12 + as.numeric(x.)[2]))
Error: Problem with `mutate()` input `..1`.
x 'list' object cannot be coerced to type 'double'
ℹ Input `..1` is `(function (.cols = everything(), .fns = NULL, ..., .names = NULL) ...`.
可重现的数据:
structure(list(h1 = list(c("6", "5.25"), c("5", "11"), c("6",
"11"), c("6", "0.25")), h2 = list(c("66", "4.2"), c("7", "10"
), c("16", "11"), c("7", "2.50")), h3 = list(c("4", "4.2"), c("7",
"10"), c("16", "11"), c("7", "7.77"))), class = "data.frame", row.names = c(NA,
-4L))
【问题讨论】: