One more question: 5. Have you tried shutting down, restarting R, and rereading? -- Bert On Mon, Sep 24, 2018 at 11:36 AM Bert Gunter <bgunter.4567 at gmail.com> wrote:> *Perhaps* useful questions (perhaps *not*, though): > > 1. What is your OS? What is your R version? > 2. How do you know that your data has 151 rows? > 3. Are there stray characters -- perhaps a stray eof -- in your data? Have > you checked around row 96 to see what's there? > 4. Are the data you did get in R what you expect? > > -- Bert > > Bert Gunter > > "The trouble with having an open mind is that people keep coming along and > sticking things into it." > -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) > > > On Mon, Sep 24, 2018 at 11:27 AM greg holly <mak.hholly at gmail.com> wrote: > >> Hi Dear all; >> >> I have a dataset with 151*291 dimension. After making data read into R I >> am >> getting a data with 96*291 dimension. Even though I have no error message >> from R I could not understand the reason why I cannot get data correctly? >> >> Here are my codes to make read the data >> a<-read.table("for_R_graphs.csv", header=T, sep=",") >> a<-read.table("for_R_graphs.txt", header=T, sep="\t") >> >> Regards, >> >> Greg >> >> [[alternative HTML version deleted]] >> >> ______________________________________________ >> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >> https://stat.ethz.ch/mailman/listinfo/r-help >> PLEASE do read the posting guide >> http://www.R-project.org/posting-guide.html >> and provide commented, minimal, self-contained, reproducible code. >> >[[alternative HTML version deleted]]
Yet one more: have you tried adding quote="" to your read.table parameters? Quote characters have a 50% chance of being balanced, and they can encompass multiple lines... On Mon, Sep 24, 2018 at 11:40:47AM -0700, Bert Gunter wrote:> One more question: > > 5. Have you tried shutting down, restarting R, and rereading? > > -- Bert > > On Mon, Sep 24, 2018 at 11:36 AM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > > *Perhaps* useful questions (perhaps *not*, though): > > > > 1. What is your OS? What is your R version? > > 2. How do you know that your data has 151 rows? > > 3. Are there stray characters -- perhaps a stray eof -- in your data? Have > > you checked around row 96 to see what's there? > > 4. Are the data you did get in R what you expect? > > > > -- Bert > > > > Bert Gunter > > > > "The trouble with having an open mind is that people keep coming along and > > sticking things into it." > > -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) > > > > > > On Mon, Sep 24, 2018 at 11:27 AM greg holly <mak.hholly at gmail.com> wrote: > > > >> Hi Dear all; > >> > >> I have a dataset with 151*291 dimension. After making data read into R I > >> am > >> getting a data with 96*291 dimension. Even though I have no error message > >> from R I could not understand the reason why I cannot get data correctly? > >> > >> Here are my codes to make read the data > >> a<-read.table("for_R_graphs.csv", header=T, sep=",") > >> a<-read.table("for_R_graphs.txt", header=T, sep="\t") > >> > >> Regards, > >> > >> Greg > >> > >> [[alternative HTML version deleted]] > >> > >> ______________________________________________ > >> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > >> https://stat.ethz.ch/mailman/listinfo/r-help > >> PLEASE do read the posting guide > >> http://www.R-project.org/posting-guide.html > >> and provide commented, minimal, self-contained, reproducible code. > >> > > > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
Hi Jan; Thanks so much for this. Yes, I did. Her is my code to read data: a<-read.csv("for_R_graphs.csv", header=T, sep=",") On Mon, Sep 24, 2018 at 2:07 PM Jan T Kim via R-help <r-help at r-project.org> wrote:> Yet one more: have you tried adding quote="" to your read.table > parameters? Quote characters have a 50% chance of being balanced, > and they can encompass multiple lines... > > On Mon, Sep 24, 2018 at 11:40:47AM -0700, Bert Gunter wrote: > > One more question: > > > > 5. Have you tried shutting down, restarting R, and rereading? > > > > -- Bert > > > > On Mon, Sep 24, 2018 at 11:36 AM Bert Gunter <bgunter.4567 at gmail.com> > wrote: > > > > > *Perhaps* useful questions (perhaps *not*, though): > > > > > > 1. What is your OS? What is your R version? > > > 2. How do you know that your data has 151 rows? > > > 3. Are there stray characters -- perhaps a stray eof -- in your data? > Have > > > you checked around row 96 to see what's there? > > > 4. Are the data you did get in R what you expect? > > > > > > -- Bert > > > > > > Bert Gunter > > > > > > "The trouble with having an open mind is that people keep coming along > and > > > sticking things into it." > > > -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) > > > > > > > > > On Mon, Sep 24, 2018 at 11:27 AM greg holly <mak.hholly at gmail.com> > wrote: > > > > > >> Hi Dear all; > > >> > > >> I have a dataset with 151*291 dimension. After making data read into > R I > > >> am > > >> getting a data with 96*291 dimension. Even though I have no error > message > > >> from R I could not understand the reason why I cannot get data > correctly? > > >> > > >> Here are my codes to make read the data > > >> a<-read.table("for_R_graphs.csv", header=T, sep=",") > > >> a<-read.table("for_R_graphs.txt", header=T, sep="\t") > > >> > > >> Regards, > > >> > > >> Greg > > >> > > >> [[alternative HTML version deleted]] > > >> > > >> ______________________________________________ > > >> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > > >> https://stat.ethz.ch/mailman/listinfo/r-help > > >> PLEASE do read the posting guide > > >> http://www.R-project.org/posting-guide.html > > >> and provide commented, minimal, self-contained, reproducible code. > > >> > > > > > > > [[alternative HTML version deleted]] > > > > ______________________________________________ > > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > > https://stat.ethz.ch/mailman/listinfo/r-help > > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > > and provide commented, minimal, self-contained, reproducible code. > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]