Learn R Programming

mizer (version 3.2.0)

str: Display the structure of mizer objects

Description

Mizer provides str() methods for MizerParams() and MizerSim() objects, as well as ArraySpeciesBySize(), ArrayTimeBySpecies() and ArrayTimeBySpeciesBySize() objects. These methods produce a clean, compact overview of the object's structure without polluting the console with large amounts of internal data.

Usage

# S3 method for ArraySpeciesBySize
str(object, ...)
# S3 method for ArrayTimeBySpecies
str(object, ...)
# S3 method for ArrayTimeBySpeciesBySize
str(object, ...)
# S3 method for MizerSim
str(object, max.level = NA, ...)
# S3 method for MizerParams
str(object, max.level = NA, ...)

Value

NULL, invisibly.

Arguments

object

The object to display the structure of.

max.level

Maximum level of nesting to print. Defaults to NA (no limit).

...

Further arguments. They are passed to the default str() method.

See Also

print(), as.data.frame(), summary(), plot(), MizerParams(), MizerSim(), ArraySpeciesBySize(), ArrayTimeBySpecies(), ArrayTimeBySpeciesBySize()

Examples

Run this code
# \donttest{
str(NS_params)
str(NS_sim)
str(getEncounter(NS_params))
# }

Run the code above in your browser using DataLab