I want to import an expression .csv file in R studio ,but the size limit is 5 mb max my file is 30 mb how do I do that?
The file is mrna seq data from TCGA which I want to extract.How can I do that is there any way to import the huge file and see ?
I want to import an expression .csv file in R studio ,but the size limit is 5 mb max my file is 30 mb how do I do that?
The file is mrna seq data from TCGA which I want to extract.How can I do that is there any way to import the huge file and see ?
fread()
from data.table package is blazing fast for reading large files. It tries to guess the delimiter and header automatically. It will give you an object of class "data.table", which is very similar to data.frame though quirky sometimes. You can easily convert it to your familiar data.frame by using as.data.frame(x)
or by using data.table=FALSE
in the argument of fread()
.
Try using read.csv()
rather than clicking on files. The limitation is there to prevent you from trying to edit large files, which will degrade performance significantly.
http://stackoverflow.com/questions/1727772/quickly-reading-very-large-tables-as-dataframes-in-r
read.csv.sql()
from https://cran.r-project.org/web/packages/sqldf/sqldf.pdf
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
I think you may use ff lib
your_data <- read.csv.ffdf(file = 'your_file.csv', header = T)
other solution use bigmemory
the authors successfully load a CSV with size as large as 11GB
more details and other solution could be found here