This question already has answers here:
How can I spread repeated measures of multiple variables into wide format?

(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

但是我该如何传播两个值都是AB,因此输出类似于
  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_widerpivot_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