Learn R Programming

magclass (version 6.13.2)

head.magpie: head/tail

Description

head and tail methods for MAgPIE objects to extract the head or tail of an object

Usage

# S3 method for magpie
head(x, n1 = 3L, n2 = 6L, n3 = 2L, ...)

Value

head returns the first n1 x n2 x n3 entries, tail returns the last n1 x n2 x n3 entries.

Arguments

x

MAgPIE object

n1, n2, n3

number of lines in first, second and third dimension that should be returned. If the given number is higher than the length of the dimension all entries in this dimension will be returned.

...

arguments to be passed to or from other methods.

Author

Jan Philipp Dietrich

See Also

Examples

Run this code

 pop <- maxample("pop")
 head(pop)
 tail(pop,2,4,1)

Run the code above in your browser using DataLab