An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131105/25283850/attachment.pl>
Problem while reading Data from a data frame
10 messages · ONKELINX, Thierry, Baro, PIKAL Petr +1 more
You don't need a loop nor a growing object.
data(mtcars)
mtcars
mtcars[seq(1, nrow(mtcars), by = 2), ]
ir. Thierry Onkelinx
Instituut voor natuur- en bosonderzoek / Research Institute for Nature and Forest
team Biometrie & Kwaliteitszorg / team Biometrics & Quality Assurance
Kliniekstraat 25
1070 Anderlecht
Belgium
+ 32 2 525 02 51
+ 32 54 43 61 85
Thierry.Onkelinx at inbo.be
www.inbo.be
To call in the statistician after the experiment is done may be no more than asking him to perform a post-mortem examination: he may be able to say what the experiment died of.
~ Sir Ronald Aylmer Fisher
The plural of anecdote is not data.
~ Roger Brinner
The combination of some data and an aching desire for an answer does not ensure that a reasonable answer can be extracted from a given body of data.
~ John Tukey
-----Oorspronkelijk bericht-----
Van: r-help-bounces at r-project.org [mailto:r-help-bounces at 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 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
______________________________________________
R-help at r-project.org mailing list
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.
* * * * * * * * * * * * * D I S C L A I M E R * * * * * * * * * * * * *
Dit bericht en eventuele bijlagen geven enkel de visie van de schrijver weer en binden het INBO onder geen enkel beding, zolang dit bericht niet bevestigd is door een geldig ondertekend document.
The views expressed in this message and any annex are purely those of the writer and may not be regarded as stating an official position of INBO, as long as the message is not confirmed by a duly signed document.
Hi You shall probably use C or similar program for such task. As I understand you want only odd rows. If yes, this will do it for you odd<-seq(1,d,2) datalist<-cd[odd,] If not please explain better your real intention. Regards Petr
-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at 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 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
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list 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.
Sorry shall be datalist<-ck[odd,] Regards Petr
-----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- project.org] On Behalf Of PIKAL Petr Sent: Tuesday, November 05, 2013 3:56 PM To: Baro; R help Subject: Re: [R] Problem while reading Data from a data frame Hi You shall probably use C or similar program for such task. As I understand you want only odd rows. If yes, this will do it for you odd<-seq(1,d,2) datalist<-cd[odd,] If not please explain better your real intention. Regards Petr
-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at 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 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
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list 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 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.
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131105/fd2bfde2/attachment.pl>
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131105/c65433f7/attachment.pl>
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131105/b061d3bf/attachment.pl>
Please follow Petr's advice and read the Introduction to R or other R online tutorial (there are many) before posting further basic questions here. You need to make an effort to learn the basics of R before pestering this list with questions such as these. Cheers, Bert
On Tue, Nov 5, 2013 at 7:35 AM, Baro <babakbsn at gmail.com> wrote:
I exactly jump over this values and only have the integer values, henc I want to read only odd rows On Tue, Nov 5, 2013 at 7:31 AM, PIKAL Petr <petr.pikal at precheza.cz> wrote:
Hi It means that what you read is a factor. Most probably the values are formated in scientific notation which is not read properly as numbers. You shall format numbers in your Excel file so that it does not have comma but dot. Or you can transfer those values to numbers in R. see ?factor ?as.character ?gsub 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:babakbsn at gmail.com] *Sent:* Tuesday, November 05, 2013 4:02 PM *To:* PIKAL Petr *Cc:* R help *Subject:* Re: [R] Problem while reading Data from a data frame thank you for your answers. It works and I have such an output: [1] 491 492 494 492 493 492 494 493 493 492 491 491 493 494 492 493 494 492 493 492 491 494 492 491 493 495 [27] 492 492 491 493 492 493 495 493 492 491 494 493 492 491 491 494 492 493 492 492 492 492 494 492 491 493 [53] 493 493 494 493 491 495 495 492 493 494 492 490 491 494 492 495 491 495 Levels: 1,09E+13 1,14E+13 1,24E+13 2,21E+12 490 491 492 493 494 495 7,06E+12 7,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 <petr.pikal at precheza.cz> wrote: Hi You shall probably use C or similar program for such task. As I understand you want only odd rows. If yes, this will do it for you odd<-seq(1,d,2) datalist<-cd[odd,] If not please explain better your real intention. Regards Petr
-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at 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 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
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list 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 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.
Bert Gunter Genentech Nonclinical Biostatistics (650) 467-7374
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131105/d2e67a68/attachment.pl>
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20131105/77338bf0/attachment.pl>