Hello,
I want to import a file, but...:
“The file “name.dat” is too large to open in the source editor(The maximum size file is 5MB)”
In my case, the size file is 5.6MB
Any recommendation to solve it?
Thanks
Pablo
Hello,
I want to import a file, but...:
“The file “name.dat” is too large to open in the source editor(The maximum size file is 5MB)”
In my case, the size file is 5.6MB
Any recommendation to solve it?
Thanks
Pablo
You will need to open the file in the console NOT the editor, e.g. like so:
library('tidyverse')
my_data = read_tsv('name.dat')
head(my_data)
Thanks a lot for your answer!