print.ff | R Documentation |
printing ff objects and compactly showing their structure
## S3 method for class 'ff'
print(x, ...)
## S3 method for class 'ff_vector'
print(x, maxlength = 16, ...)
## S3 method for class 'ff_matrix'
print(x, maxdim = c(16, 16), ...)
## S3 method for class 'ff'
str(object, nest.lev=0, ...)
## S3 method for class 'ffdf'
str(object, nest.lev=0, ...)
x |
a ff object |
object |
a ff object |
nest.lev |
current nesting level in the recursive calls to str |
maxlength |
max number of elements to print from an |
maxdim |
max number of elements to print from each dimension from an |
... |
further arguments to print |
The print methods just print a few exmplary elements from the beginning and end of the dimensions.
invisible()
Jens Oehlschlägel
ff
, print
, str
x <- ff(1:10000)
x
print(x, maxlength=30)
dim(x) <- c(100,100)
x
rm(x); gc()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.