[R] Empty data frame

Paul Hiemstra p.hiemstra at geo.uu.nl
Thu Feb 7 13:31:19 CET 2008


Jarosław Jasiewicz wrote:
> Hi
> Sorry for banal question
> How to create empty data frame  with for example 30 variables without 
> typying: data.frame(x=1,y=1....)
> Jarek
>
> ______________________________________________
> 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.
>   
Or:

data.frame(sapply(1:30, function(x) data.frame(x)))

cheers,
Paul

-- 
Drs. Paul Hiemstra
Department of Physical Geography
Faculty of Geosciences
University of Utrecht
Heidelberglaan 2
P.O. Box 80.115
3508 TC Utrecht
Phone: 	+31302535773
Fax:	+31302531145
http://intamap.geo.uu.nl/~paul



More information about the R-help mailing list