标签: database r vector
我试图根据行号向量从数据帧中提取值向量;
df<-iris x<-c(1,5,15,8,7,2)
我想要向量x中列出的行号的相应种类。我尝试了类似df$Species[x,]和df$Species[list(x),]的内容无济于事。我确信答案很简单,但我看不到它!
df$Species[x,]
df$Species[list(x),]
提前致谢
答案 0 :(得分:2)
尝试
df[x,]$Species
或
df[,"Species"][x]
或确实
df[x,"Species"]