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.
我有许多具有通用列名的文件。在采用每一列的方法后,我试图将这些文件的结果保存在一个文件中。我正在使用追加命令,但它也使用列名保存每一行,这是我不想要的。我只想要单个列名而不是每一行。任何建议...
尝试在 using 中读取文件read.csv。它将适用于纯文本文件和 CSV 文件,并提供定义选项header=TRUE,它将在文件的标题行中读取为列名,而不是行。
read.csv
header=TRUE
df1 <- read.csv("fileDir/input1.txt",sep=""),header=TRUE)
然后,当您将文件作为数据框时,您可以使用以下命令轻松附加它们rbind:
rbind
df_final <- rbind(df1,df2,df3)