Re: [R] problem with CSV and R

2015-04-20 Thread Nino David Jordan
I get the same error message when I try to edit a data frame on the basis of a .csv file. -- View this message in context: http://r.789695.n4.nabble.com/problem-with-CSV-and-R-tp4680979p4706148.html Sent from the R help mailing list archive at Nabble.com. __

Re: [R] problem with CSV and R

2013-11-22 Thread Doran, Harold
Rachel Using fix() is not really a good way to view or modify your data. It is better to use functions like head(), tail() or index values in the dataframe to view your data and then also modify elements through indexing. For instance, something like this > tmp <- data.frame(v1 = rnorm(10), v