Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread Baro
> Petr > > > > > > > > *From:* Baro [mailto:babak...@gmail.com] > *Sent:* Tuesday, November 05, 2013 4:35 PM > > *To:* PIKAL Petr > *Cc:* R help > *Subject:* Re: [R] Problem while reading Data from a data frame > > > > I exactly jump over this val

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread PIKAL Petr
hand (as as.numeric() or unclass() give the internal codes). Regards Petr From: Baro [mailto:babak...@gmail.com] Sent: Tuesday, November 05, 2013 4:35 PM To: PIKAL Petr Cc: R help Subject: Re: [R] Problem while reading Data from a data frame I exactly jump over this values and only have the

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread Bert Gunter
50E+11 8,03E+12 >> >> >> >> what does levels mean? how can I have only the numbers? >> >> >> >> On Tue, Nov 5, 2013 at 6:55 AM, PIKAL Petr wrote: >> >> Hi >> >> You shall probably use C or similar program for such task. >>

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread Baro
> And if you are in reading some docs you can try to locate R-intro and go > through it. It can help you greatly in beginning. > > > > Regards > > Petr > > > > *From:* Baro [mailto:babak...@gmail.com] > *Sent:* Tuesday, November 05, 2013 4:02 PM > *To:* PIKAL Pet

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread PIKAL Petr
age- > From: r-help-boun...@r-project.org<mailto:r-help-boun...@r-project.org> > [mailto:r-help-bounces@r-<mailto:r-help-bounces@r-> > project.org<http://project.org>] On Behalf Of Baro > Sent: Tuesday, November 05, 2013 3:42 PM > To: R help > Subject: [R]

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread Baro
ginal Message- > > From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > > project.org] On Behalf Of Baro > > Sent: Tuesday, November 05, 2013 3:42 PM > > To: R help > > Subject: [R] Problem while reading Data from a data frame > > > > Hi exper

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread PIKAL Petr
real intention. > > Regards > Petr > > > > -Original Message- > > From: r-help-boun...@r-project.org [mailto:r-help-bounces@r- > > project.org] On Behalf Of Baro > > Sent: Tuesday, November 05, 2013 3:42 PM > > To: R help > > Subject:

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread PIKAL Petr
lp-boun...@r-project.org [mailto:r-help-bounces@r- > project.org] On Behalf Of Baro > Sent: Tuesday, November 05, 2013 3:42 PM > To: R help > Subject: [R] Problem while reading Data from a data frame > > Hi experts, > > I want to read only the half of my data frame, which I read

Re: [R] Problem while reading Data from a data frame

2013-11-05 Thread ONKELINX, Thierry
mailto:r-help-boun...@r-project.org] Namens Baro Verzonden: dinsdag 5 november 2013 15:42 Aan: R help Onderwerp: [R] Problem while reading Data from a data frame Hi experts, I want to read only the half of my data frame, which I read it from clip board, and save it in a list. I wrote this code

[R] Problem while reading Data from a data frame

2013-11-05 Thread Baro
Hi experts, I want to read only the half of my data frame, which I read it from clip board, and save it in a list. I wrote this code but it doesnt work: ck<-read.table("clipboard") datalist<-list() d<-dim(ck)[1] i<-1 repeat { datalist<-c(datalist,ck[i,]) i<-i+2 if(i>d) {break} } datalist