我有以下数据:
structure(list(Tempo = c("t0", "t1", "REC1", "REC2", "REC4",
"REC8", "REC11"), sig_C = c("a", "a", "a", "a", "a", "a", "a"
), sig_C1 = c("a", "a", "a", "a", "a", "a", "a"), sig_C2 = c("a",
"a", "a", "a", "a", "a", "a"), sig_C3 = c("a", "a", "a", "a",
"a", "a", "a"), sig_C4 = c("a", "a", "a", "a", "a", "a", "a"),
sig_C5 = c("a", "b", "b", "ab", "ab", "ab", "a")), row.names = c(NA,
-7L), class = c("tbl_df", "tbl", "data.frame"))
我想转置这个 Dataframe ,保留Tempo
作为列名,保留sig_C直到sig_C5作为名为group的变量。
我尝试使用t()
函数,但没有以预期的方式工作。
谢谢
2条答案
按热度按时间nzrxty8p1#
也许可以使用类似下面的内容来润色
t()
结果:输入:
创建于2023年1月26日,使用reprex v2.0.2
myzjeezk2#
您可以尝试使用
tidyr
库中的pivot()
对其进行整形。