Hi one additional question. I’ve managed to open my files from excel into R by converting them into text files. The problem is that they are very large files, pushing the limits of excel. I now get this error in R. Any idea how i can work around it?
[ reached getOption(“max.print”) — omitted 463885 rows ]]
That is just a warning telling you that not all the data was displayed. It’s still probably loading. You get the same when trying to display large matrices or data frames. For example you will get the same warning if you try
matrix(nrow=10000000)