I just started using R and I am having trouble performing the following task: I have approximately 130 language samples in separate plain text files sitting in my working di
files <- list.files(pattern = 'Patient*.txt')
for(i in files) {
x <- read.table(i, header=TRUE, comment.char = "A", sep="\t")
assign(i,x)
}
Here is one way to automate the process
# read txt files with names of the form Patient*.txt
txt_files = list.files(pattern = 'Patient*.txt');
# read txt files into a list (assuming separator is a comma)
data_list = lapply(txt_files, read.table, sep = ",")
You can change the separator if you know what it is. It is convenient to keep the data as a list of data frames since it is easier to throw into a vectorized operation or loops later.