0
我在練習iris
的數據操作。我試圖將Sepal.Width
和Petal.Width
總和爲一列。我提到這個問題In R, how to replace values in multiple columns with a vector of values equal to the same width?總結幾列並保持總和值只有
得到的總和,但Sepal.Width
和Petal.Width
不會被刪除。請幫忙。非常感謝。
我的代碼是
iris <- iris %>% mutate(rowSums(iris[,c(2,4)]))
非常感謝你。 –