标签: r dataframe
我很确定它以某种方式存在,但我无法找到答案:我想通过使用df [ - “name”]来选择data.frame的子集,因为可以使用df [ “名字”]例如:
df <- data.frame(x = 1:5, y = 2:6, z = 3:7) df_plane <- df[-"z"] # what I want to type df_plane <- df[,-3] # what I want to be done
感谢