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@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.

Reply via email to