[R] Reading in a csv - 2 different results

2014-06-20 Thread svendeswan
Hi,
I am a beginner in R and already read and (thought that I) understood the R
introduction tutorial. However there is this reading .csv which I cant
solve. The question is: Why has data in the both cases a different content?

I have a directory containing one .csv file. 

Version 1:
data - read.csv(dir+filename)

Version 2:
temp - paste(c(dir/), list.files(dir), sep = “)
data - sapply(temp, read.csv)

Thanks for the replies and sorry if this question has been posted already
and I didn't see it,
Sven 

p.s.: I am asking this because Version 2 gives me the possibility to read a
whole directory with .csv files into one list




--
View this message in context: 
http://r.789695.n4.nabble.com/Reading-in-a-csv-2-different-results-tp4692434.html
Sent from the R help mailing list archive at Nabble.com.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Reading in a csv - 2 different results

2014-06-20 Thread svendeswan
Aww thank u !

I had a knot in my brain... thank you for solving it :)

Cheers,
Sven



--
View this message in context: 
http://r.789695.n4.nabble.com/Reading-in-a-csv-2-different-results-tp4692434p4692448.html
Sent from the R help mailing list archive at Nabble.com.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.