我正在嘗試隔離所有觀察值具有相同值(忽略NAs)的數據幀的那些列。請參閱下面的假設示例:分離具有相同值的列
ForestName <- rep("Planige", 4)
TreeNumber <- c(1:4)
Height <- c(2.3, 2, 2.1, 2.9)
Type <- c("AA", "AA", NA, "AA")
df <- data.frame(ForestName, TreeNumber, Height, Type)
df
新的數據框應該包含ForestName和Type。不同值的列(TreeNumber和Height)應該包含在另一個數據框中。
This作品!謝謝! –
@RobertWest請將正確的解決方案標記爲已接受的答案。 – Superbest