Re: [R] Question concerning Loading large Data Sets

2019-05-07 Thread Eric Berger
I don't think I understand your question. What if you enter class(anno) Does that give anything? On Mon, May 6, 2019 at 2:29 AM David Winsemius wrote: > I wouldn’t have expected an message, but it does raise the question: why > are you making two different copies of the same text file if you

Re: [R] Question concerning Loading large Data Sets

2019-05-05 Thread David Winsemius
I wouldn’t have expected an message, but it does raise the question: why are you making two different copies of the same text file if you are concerned about size issues? — David Sent from my iPhone > On May 5, 2019, at 5:14 PM, Spencer Brackett > wrote: > > Also, > > In case there is

Re: [R] Question concerning Loading large Data Sets

2019-05-05 Thread Spencer Brackett
Also, In case there is any confusion... "~/Vakul's GBM code" was set up in the working directory (via setwd) as the folder in which the file 'mapper.txt' is contained... thereby making the "~/Vakul's GBM code/mapper.txt" as shown. Should I perhaps reset my working directory to the file I'm

[R] Question concerning Loading large Data Sets

2019-05-05 Thread Spencer Brackett
Good evening, I am attempting to reproduce the following lines of code... library(data.table) anno = as.data.frame(fread(file = "file name", sep ="\t", header = T)) The following is my attempt... > library(data.table) > mapper <- read.delim("~/Vakul's GBM code/mapper.txt") > View(mapper) ##