nrowAssign | R Documentation |
Function nrow<-
assigns dim
with a new number of rows.
Function ncol<-
assigns dim
with a new number of columns.
nrow(x) <- value
ncol(x) <- value
x |
a object that has |
value |
the new size of the assigned dimension |
Currently only asssigning new rows to ffdf
is supported.
The new ffdf rows are not initialized (usually become zero).
NOTE that
The object with a modified dimension
Jens Oehlschlägel
ffdf
, dim.ffdf
a <- as.ff(1:26)
b <- as.ff(factor(letters)) # vmode="integer"
c <- as.ff(factor(letters), vmode="ubyte")
df <- ffdf(a,b,c)
nrow(df) <- 2*26
df
message("NOTE that the new rows have silently the first level 'a' for UNSIGNED vmodes")
message("NOTE that the new rows have an illegal factor level <0> for SIGNED vmodes")
message("It is your responsibility to put meaningful content here")
message("As an example we replace the illegal zeros by NA")
df$b[27:52] <- NA
df
rm(a,b,c,df); gc()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.