head.magpie: head/tail

View source: R/head.magpie.R

head.magpieR Documentation

head/tail

Description

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

Usage

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

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.

Value

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

Author(s)

Jan Philipp Dietrich

See Also

head, tail

Examples


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


magclass documentation built on July 9, 2023, 7:03 p.m.