This question already has answers here:
How can I spread repeated measures of multiple variables into wide format?
(4个答案)
5年前关闭。
取这个样本变量
我可以使用
但是我该如何传播两个值都是
或可能的
编辑22/10/2019
如 @gjabel 的注释中所述,较新的tidyr版本(v1.0.0 +)
现在具有
(4个答案)
5年前关闭。
取这个样本变量
df <- data.frame(month=rep(1:3,2),
student=rep(c("Amy", "Bob"), each=3),
A=c(9, 7, 6, 8, 6, 9),
B=c(6, 7, 8, 5, 6, 7))
我可以使用
spread
中的tidyr
将其更改为宽格式。> df[, -4] %>% spread(student, A)
month Amy Bob
1 1 9 8
2 2 7 6
3 3 6 9
但是我该如何传播两个值都是
A
和B
,因此输出类似于 month Amy.A Bob.A Amy.B Bob.B
1 1 9 8 6 5
2 2 7 6 7 6
3 3 6 9 8 7
最佳答案
这是一个使用data.table
的简单有效的解决方案
library(data.table) ## v >= 1.9.6
dcast(setDT(df), month ~ student, value.var = c("A", "B"))
# month Amy_A Bob_A Amy_B Bob_B
# 1: 1 9 8 6 5
# 2: 2 7 6 7 6
# 3: 3 6 9 8 7
或可能的
tidyr
解决方案df %>%
gather(variable, value, -(month:student)) %>%
unite(temp, student, variable) %>%
spread(temp, value)
# month Amy_A Amy_B Bob_A Bob_B
# 1 1 9 6 8 5
# 2 2 7 7 6 6
# 3 3 6 8 9 7
编辑22/10/2019
如 @gjabel 的注释中所述,较新的tidyr版本(v1.0.0 +)
现在具有
pivot_wider
和pivot_longer
函数(当前处于maturing状态),因此,一种较新的方法是pivot_wider(data = df,
id_cols = month,
names_from = student,
values_from = c("A", "B"))
# # A tibble: 3 x 5
# month A_Amy A_Bob B_Amy B_Bob
# <int> <dbl> <dbl> <dbl> <dbl>
# 1 1 9 8 6 5
# 2 2 7 6 7 6
# 3 3 6 9 8 7
10-08 13:16