headm {rchemo} | R Documentation |
Display of the first part of a data set
Description
Function headm
displays the first part and the dimension of a data set.
Usage
headm(X)
Arguments
X |
A matrix or dataframe. |
Value
first 6 rows and columns of a dataset, number of rows, number of columns, dataset class.
Examples
n <- 1000
p <- 200
X <- matrix(rnorm(n * p), nrow = n)
headm(X)
[Package rchemo version 0.1-2 Index]