Skip to content
Prev 68478 / 398506 Next

Data frames

Perhaps this works for creating a new void dataframe:

Newvoid = function (...)
{a=c(...); m=length(a)
initial=matrix(rep(NA,m),byrow=T,ncol=m)
tab=data.frame(initial)
colnames(tab)=a; subset(tab,F)}

Josef Eschgf??ller