Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个制表符分隔文件。
猫文件
A B C 2 3 4 3 4 5 2 6 6
infile<-read.table("file",header=TRUE)
我需要获取具有标题 =“A”的列的值。
A 2 3 2
我怎么才能得到它?
对于单列data.frame作为输出:
data.frame
infile["A"] infile[1]
对于作为输出的向量:
infile[, "A"] infile[, 1] infile[["A"]] infile[[1]] infile$A
infile$A 应该可以工作。你需要更多地阅读 R 书籍,然后开始你的编程试验。