An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20110113/efd7322c/attachment.pl>
Writing out data from a list
2 messages · Aaron Lee, Jinyan Huang
a<- list(a=c(0.00,0.00),b=c(2,2,2),c=c(3,3,3))
t<-NULL
m<-1
for( i in a) {t<-c(t,paste("Event",m),i);m<-m+1}