| head.disk.frame {disk.frame} | R Documentation |
Head and tail of the disk.frame
## S3 method for class 'disk.frame' head(x, n = 6L, ...) ## S3 method for class 'disk.frame' tail(x, n = 6L, ...)
x |
a disk.frame |
n |
number of rows to include |
... |
passed to base::head or base::tail |
cars.df = as.disk.frame(cars) head(cars.df) tail(cars.df) # clean up delete(cars.df)