Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'default':
dataFrame(colClasses, nrow=1, ...)
character
vector
of column classes,
cf. read.table
.integer
specifying the number of rows of the
allocated data frame.data.frame
where N equals nrow
and
K equals length(colClasses)
.data.frame
.df <- dataFrame(colClasses=c(a="integer", b="double"), nrow=10)
df[,1] <- sample(1:nrow(df))
df[,2] <- rnorm(nrow(df))
print(df)
Run the code above in your browser using DataLab