我有一個乾淨的tibble,如下所示:R:tibble移動列以行和名稱列
df <- structure(list(created_week = c(31, 32, 33, 34), Rt_count = c(7,
6, 5, 0), Cus_count = c(2, 1, 2, 1)), class = c("tbl_df", "tbl",
"data.frame"), .Names = c("created_week", "Rt_count", "Cus_count"
), row.names = c(NA, -4L))
我在看做與從鹼T(),具有tibble作爲結果和行從df $ created_week和他們的名字,列是Rt_count和Cus_count,必須命名。 我找不到一個簡單而簡單的方法。
謝謝你的幫助。
我不知道我是否理解。如果Rt_count&Cus_count保留列,是否轉置數據框?或者你只是想將第一列轉換爲行名?對於後者,請查看'tibble :: column_to_rownames' –
@ Z.Lin column_to_rownames(tt,var =「toto」) 錯誤:未找到列'num2' – gabx
您必須指定將哪一列轉換爲rowname。嘗試'df%>%column_to_rownames(「created_week」)%>%as.data.frame()'? –