Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

read delim in r with lapply read.delim sep

# Read the CSVs in one object that has the data as lists
# in the same file directory you have to have some .csv files
temp = list.files(pattern="*.csv")
myfiles = lapply(temp, read.table, sep=",")
 
PREVIOUS NEXT
Tagged: #read #delim #lapply #sep
ADD COMMENT
Topic
Name
8+3 =