|
可以使用函数 subset(select = ) ;或者使用下标:
x <- data .frame(matrix(1:30 , nrow = 5 , byrow = T))
dim(x)
print(x)
new.x1 <- x[-c(1 ,4) ,] #row
new.x2 <- x[,-c [2 ,3]] # c o l
new.x1 ; new.x2
事实上,关于选取特定条件下的数据框数据,subset 函数同使用下标效果相同:
iS <- iris $Species == "setosa"
iris [ iS ,c(1 ,3)]
subset( iris , select = c(Sepal .Length , Petal .Length) , Species == "setosa") |
|