Learn R Programming

NetLogoR (version 1.0.5)

show,agentMatrix-method: Key base R functions for agentMatrix class

Description

Slight modifications from the default versions.

Usage

# S4 method for agentMatrix
show(object)

# S4 method for agentMatrix length(x)

# S4 method for agentMatrix nrow(x)

# S3 method for agentMatrix head(x, n = 6L, ...)

# S3 method for agentMatrix tail(x, n = 6L, ...)

Value

show is called for its side effects. It shows all columns of data, except for the coordinates. To access those, use coordinates(). length returns a non-negative integer of length 1, except for vectors of more than 2^31 - 1 elements, when it returns a double. nrow returns an integer of length 1 or NULL.

An agentMatrix object, like x, but generally smaller.

Arguments

object

An agentMatrix object.

x

An agentMatrix object

n

an integer vector of length up to dim(x) (or 1, for non-dimensioned objects).

...

arguments to be passed to or from other methods (currently, none used).