select函数 dplyr包select函数用的很多,不过我们一般也是通过正反选列名或数字来选择列. 常见用法如: select(iris,c(1,3)) select(iris,1,3) #同上 select(iris,1:3) select(iris,-c(1,3)) select(iris, Sepal.Length, Sepal.Width) select(iris, Sepal.Length:Species) select(iris, -Sepal.Length, -Sepal.Wi…