Description Usage Arguments Details Value Examples
Returns the first parts of a vector, matrix, table, data frame or function. Since header() and h() are generic functions, they may also have been extended to other classes.
1 2 |
x |
an object |
n |
a single integer. If positive, size for the resulting object:
number of elements for a vector (including lists), rows for a
matrix or data frame or lines for a function. If negative,
all but the |
For matrices, 2-dim tables and data frames, head() (tail())
returns the first (last) n rows when n > 0 or all but the last
(first) n rows when n < 0. head.matrix() and
tail.matrix() are exported. For functions, the lines of the
deparsed function are returned as character strings.
If a matrix has no row names, then tail() will add row names of
the form [n,] to the result, so that it looks similar to the
last lines of x when printed. Setting addrownums = FALSE
suppresses this behaviour.
An object (usually) like x but generally smaller. For ftable
objects x, a transformed format(x).
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.