Learn R Programming

Mizer is an R package to run dynamic multi-species size-spectrum models of fish communities. The package has been developed to model marine ecosystems that are subject to fishing. However, it may also be appropriate for other aquatic ecosystems. By providing a framework for multi-species fisheries modelling as an R package, mizer enhances the accessibility, usability, and reproducibility of models, and thus aims to facilitate collaboration and innovation.

The package contains functions that allow you to set up an ecosystem model and then project it through time under different fishing strategies. Methods are included to explore the results, including plots and calculations of community indicators such as the slope of the size spectrum. Size-based models can be complicated, so mizer contains many default options that you can however change when needed.

Mizer has been supporting research in marine ecology and fisheries science since 2014 (see publications). Mizer is still under active development. Version 2 has increased the user-friendliness and the flexibility of the framework. Version 3 has introduced diffusion, arising from stochastic growth, and improved the numerics. Contributions from the user community are very welcome. There is a sister package called mizerExperimental where user contributions can be checked out and receive feedback from the community. A growing number of other extension packages add new biology such as temperature dependence, starvation mortality, seasonal dynamics, and more — see the list of extension packages. Example mizer models can be contributed to mizerExamples. Follow us on twitter and read our blog to stay up-to-date with new developments. Does your project or publication use mizer? If so, we would love to know.

Recent work on mizer was funded by the European Commission Horizon 2020 Research and Innovation Programme under Grant Agreement No 634495 for the project MINOUW and the Australian Research Council Discovery Project Rewiring Marine Food Webs.

Installation

The package is on CRAN and therefore available from R’s built-in package manager.

# Install latest released version from CRAN
install.packages("mizer")

# Alternatively, install the development version from GitHub
pak::pak("sizespectrum/mizer")

Example

The following code loads the mizer package, loads some information about species in the North Sea that comes as an example with the package, sets up the parameters for the mizer model, and runs a simulation for 10 years.

library(mizer)
params <- newMultispeciesParams(NS_species_params, NS_interaction)
sim <- project(params, t_max = 10, effort = 0)

The results of the simulation can then be analysed, for example via plots:

plot(sim)

See the accompanying Get started page for more details on how the package works, including detailed examples.

Dynamic multi-species size-spectrum model

Size-based multi-species models are important for fisheries science because they provide a more realistic and accurate representation of the dynamics of fish populations and the ecosystems in which they live. In contrast to traditional single-species models, which consider a single fish stock as an isolated unit, size-based multi-species models account for the fact that fish populations are part of a larger ecosystem and interact with other species through predation, competition, and other ecological processes.

One of the key advantages of size-based multi-species models is that they provide a more comprehensive understanding of the impacts of fishing on fish populations and ecosystems. By considering the size distribution of different fish species, these models can capture the effects of fishing on both target and non-target species, and on different life stages of a species. This is particularly important for species that are caught as bycatch or that are indirectly affected by fishing through changes in their food web.

Another advantage of size-based multi-species models is that they can be used to investigate the effects of environmental changes and other perturbations on fish populations and ecosystems. For example, these models can be used to explore the impacts of climate change on the distribution and abundance of fish populations, or the effects of habitat loss or pollution on fish communities. Because mizer is a mechanistic model, it can deduce the complex population-level changes that we are interested in from the simpler changes in the physiological rates and feeding interactions of individual fish species. You can find examples of this in the list of publications.

Overall, size-based multi-species models provide a more comprehensive and realistic framework for understanding the dynamics of fish populations and ecosystems, and for developing effective fisheries management strategies that account for the complex interactions among species and their environment.

A mizer model captures the interactions between species. The growth rates of fish are determined by the availability of prey and the death rates are influenced by the abundance of predators, as well as fishing. The model starts with the individual-level physiological rates for each species, as well as the predation preferences, and deduces the population-level dynamics from these. Thus quantities like fish diets and fisheries yields emerge dynamically and can be projected into the future.

Because a mizer model tracks the size of individuals as they grow up over several orders of magnitude from their egg size to their maximum size, it correctly tracks the ontogenetic diet shifts. An individual typically moves through several trophic levels during its life time. This is often not correctly captured in other multi-species models.

A mizer model can be set up with only a small amount of information because it uses allometric scaling relations and size-based feeding rules to choose sensible defaults for unknown parameters.

Setting up a new multi-species mizer model is a two-step process, similar to what may be familiar from Ecopath with Ecosim: First one calibrates the model to describe a steady state that is in agreement with current observations (as in Ecopath), then one chooses the additional parameters that determine the dynamics away from the steady state (as in Ecosim). This model can then be used to investigate future effects of changes in fishing policy or of environmental stressors.

A strong theoretical basis

One big advantage of a mizer model is that it is based on a strong mathematical foundation. This allows a degree of a priori understanding of the behaviour of the model that is absent in many other multi-species models. This theoretical foundation is well presented in the book “Fish Ecology, Evolution, and Exploitation” by Ken Andersen.

It is interesting to think of the marine ecosystem as a transport system that moves biomass from the size of primary producers (mostly unicellular plankton) up to the sizes of fish that humans like to consume. Each fish that grows up from egg size to maturity by eating smaller individuals is like a car on this biomass highway. The yield of our fisheries depend on this traffic flowing smoothly and without traffic jams.

An analogy with road traffic may be helpful:

In road traffic, if traffic density gets too high in a section of the highway, drivers slow down, which leads to a pile-up producing even higher traffic density, leading to further slow-down in a potentially vicious cycle known as a traffic jam. Traffic management that ignores how the traffic density affects traffic speed fails. Luckily our mathematical understanding of transport equations has made practical contributions to managing traffic in ways that produce smoother traffic flow and hence higher throughput.

Mizer implements the transport equations for marine ecosystems. The potential for traffic jams is the same: if for example there is a high density of predators of a particular size, which all have preference for prey of a particular smaller size, then due to competition for that prey the growth of those predators slows down, leading to a pile-up which leads to further depletion of prey, leading to further slow-down, in a potentially vicious cycle.

Luckily, the natural ecosystem has evolved to facilitate very smooth traffic on this biomass highway, with resultant high productivity. This state is characterised by an approximate power-law shape of the biomass size spectrum. The purpose of mizer is to allow us to understand how various stressors, like fishing or climate change, affect the size spectrum and hence the flow of biomass and the productivity and resilience of the marine ecosystem. Mizer allows us to investigate how size-based fisheries management strategies can be used to keep the ecosystem close to its natural productive state.

Copy Link

Version

Install

install.packages('mizer')

Monthly Downloads

536

Version

3.4.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Gustav Delius

Last Published

August 31st, 2026

Functions in mizer (3.4.0)

ArraySpeciesBySize

S3 class for species x size rate arrays
ArrayTimeBySpeciesBySize

S3 class for time x species x size arrays
ArrayTimeBySpecies

S3 class for time x species arrays
ArrayResourceBySize

S3 class for resource size spectra
BevertonHoltRDD

Beverton Holt function to calculate density-dependent reproduction rate
ArraySpeciesBySize_plot_data

The complete plotting data of a species-by-size array
MizerParams-class

A class to hold the parameters for a size based model.
ArrayTimeByResourceBySize

S3 class for time x resource-size arrays
MizerParams

Alias for set_multispecies_model()
ArrayResourceBySize_plot_data

The complete plotting data of a resource-by-size array
NS_sim

Example MizerSim object for the North Sea example
MizerScan

S3 class for the result of a parameter scan
NS_species_params_gears

Example species parameter set based on the North Sea with different gears
NS_species_params

Example species parameter set based on the North Sea
NS_params

Example MizerParams object for the North Sea example
NOther

Time series of other components
MizerSim

Constructor for the MizerSim class
N

Time series of size spectra
MizerSim-class

A class to hold the results of a simulation
NS_interaction

Example interaction matrix for the North Sea example
addPlot

Add lines to an existing plot
addSpecies

Add new species
age_mat_vB

Calculate age at maturity from von Bertalanffy growth parameters
adjustSizeGrid

Adjust the size grid
animate

Animate size-dependent quantities through time
RickerRDD

Ricker function to calculate density-dependent reproduction rate
add_scan_annotations

Add the annotation layers to a MizerScan plot
SheperdRDD

Sheperd function to calculate density-dependent reproduction rate
age_mat

Calculate age at maturity
bin_average_weight

Bin-average the weight of a size-spectrum integral
append_total_line

Convert the contributors to a total and append the total line
add_total_line

Add a total line to plotting data by summing over its series
array_ylim

Y-axis limits an array's type calls for
apply_wlim

Restrict plot data to a range of weights
as.data.frame

Convert mizer arrays to data frames
array_types

Kinds of quantity a mizer array can hold
as_series_matrix

Bring what a value function returned into a time by series matrix
calibrateBiomass

Calibrate the model scale to match total observed biomass
calc_selectivity

Calculate selectivity from gear parameters
box_pred_kernel

Box predation kernel
calibrateNumber

Calibrate the model scale to match total observed number
array_log_y

The logarithmic y axis an array's type calls for
broadcast_dims

Expand an array to a larger set of labelled dimensions
array_density_wrt

The density measure of a mizer array
array_type

The type of a mizer array
check_band_vars

Check that a data frame has the variables a band style needs
cdf_y_label

Y-axis label for a cumulative-distribution plot
calibrate_to

Calibrate the model scale to match a total observation
bin_midpoints

Geometric bin centres of the size grid
check_finite

Check that the rate arrays hold only finite values
constantRDD

Give constant reproduction rate
coerceToExtensionClass

Coerce a mizer object to its extension class
compareParams

Compare two MizerParams objects and print out differences
check_per_log_size

Check that per_log_size applies to a mizer array
constant_other

Helper function to keep other components constant
constantEggRDI

Choose egg production to keep egg density constant
collect_dimnames

Assemble the dimnames of a broadcast array
convert_plot_density_axis

Express plotting data on the requested size axis
completeSpeciesParams

Alias for validSpeciesParams()
convert_density_units

Restate the units of a density in a different density measure
cutoff_min_w

The minimum weights given by a cutoff species parameter
defaults_edition

Default editions
density_measure_weight

Factor relating a density measure to a density with respect to weight
copy_scan_attributes

Copy the metadata of a MizerScan onto another object
convert_plot_spectrum_axis

Convert a weight-based spectrum to a length-based spectrum
different

Check whether two objects are different
distanceSSLogN

Measure distance between current and previous state in terms of fish abundances
default_pred_kernel_params

Set defaults for predation kernel parameters
density_measure_jacobian

Jacobian converting between two density measures
default_info_level

The default level of information that mizer gives
customFunction

Replace a mizer function with a custom version
dim_extents

Collect the extent of each labelled dimension
.hasSlot

S4/S3 compatibility .hasSlot helper
.checkRateFunctionOutput

Check that a rate function returns the correct output dimensions
density_measures

Density measures a spectrum can be expressed in
convert_plot_size_axis

Convert plotting data from weight to length
density_target_measure

The density measure a plot calls for
density_size_unit

The size unit appearing in the units of a density
dim_from_labels

The dimensions of an array, given its labels
encounter_kernel

The predation kernel as used by the encounter quadrature
double_sigmoid_length

Length based double-sigmoid selectivity function
expandSizeGrid

Expand the size grid
emptyParams

Create empty MizerParams object of the right size
distanceMaxRelRDI

Measure distance between current and previous state in terms of RDI
extensionVersion

Get the recorded version stamp for one extension on an object
extension_needs_upgrading

Whether any extension recorded on an object needs upgrading
extensionVersions

Extract the version stamps of an extension chain
expand_kernel_offsets

Expand kernel weights indexed by grid offset into a full kernel array
extensionRequirements

Extract the requirement view of an extension chain
ensureExtensionNamespaces

Load (and optionally install) namespaces for all non-NA extensions
frozen_rate_params

Which parameters feed which frozen array
finalN

Size spectra at end of simulation
findSteadyState

Find the steady state of a model
gear_params

Gear parameters
free_gear_name

A gear name that the model is not already using
gear_names

Every gear name a model uses
flux_units

Units string for the flux returned by getFlux()
filter_plot_length_limits

Filter plotting data to the requested length limits
gaussian_mixture_pred_kernel

Gaussian-mixture predation kernel
flux_from_rates

Assemble the flux matrix from growth, diffusion and recruitment rates
getEGrowth

Get energy rate available for growth
getCriticalFeedingLevel

Get critical feeding level
getDiscreteStability

Analyse the stability of mizer's numerical time step
getDiffusion

Get diffusion rate from predation
getCommunitySlope

Calculate the slope of the community abundance
getDiet

Get diet of predator at size, resolved by prey species
getESpawning

Alias for getERepro()
getEReproAndGrowth

Get energy rate available for reproduction and growth
getBiomass

Calculate the total biomass of each species within a size range at each time step.
getERepro

Get energy rate available for reproduction
getEffort

Fishing effort used in simulation
getFMort

Get the total fishing mortality rate from all fishing gears by time, species and size.
getM2Background

Alias for getResourceMort()
getGrowthCurves

Get growth curves giving weight as a function of age
getEncounter

Get encounter rate
getFMortGear

Get the fishing mortality by time, gear, species and size
getFluxGradient

Get flux gradient
getFlux

Get flux into size bins
getM2

Alias for getPredMort()
getFeedingLevel

Get feeding level
getMeanWeight

Calculate the mean size of the community
getMort

Get total mortality rate
getPredRate

Get predation rate
getPhiPrey

Get available energy
getMeanMaxWeight

Calculate the mean maximum weight of the community
getOscillationModeSim

Construct a MizerSim of the leading oscillatory mode
getProportionOfLargeFish

Calculate the proportion of large fish
getPredMort

Get total predation mortality rate
getParams

Extract the model state from a simulation
getN

Calculate the number of individuals within a size range
getSSB

Calculate the SSB of species
getRequiredRDD

Determine reproduction rate needed for initial egg abundance
getSimParams

Extract the projection parameters used to produce a simulation
getSteadyResidual

How far a model is from its steady state
getResourceMort

Get predation mortality rate for resource
getRDD

Get density dependent reproduction rate
getStability

Analyse the dynamic stability of a mizer steady state
getRates

Get all rates
getRDI

Get density independent rate of egg production
getTimes

Times for which simulation results are available
get_ArrayResourceBySize_w

Get the size grid for an ArrayResourceBySize object
getYield

Calculate the rate at which biomass of each species is fished
getTrophicLevel

Get trophic level of individuals at size
getTrophicLevelBySpecies

Get mean trophic level of each species
get_ArrayTimeBySpeciesBySize_w

Get the size grid for an ArrayTimeBySpeciesBySize object
get_ArraySpeciesBySize_w

Get the size grid for an ArraySpeciesBySize object
get_f0_default

Get default value for f0
getZ

Alias for getMort()
get_gamma_default

Get default value for gamma
getYieldGear

Calculate the rate at which biomass of each species is fished by each gear
get_species_size_rate_from_sim

Apply a species-by-size rate function over saved simulation times
get_size_range_array

Get size range array
get_ks_default

Get default value for ks
get_sim_rate_slice

Extract one saved simulation state for a rate calculation
get_steady_state_n

Calculate steady state abundance
get_phi

Get values from feeding kernel function
get_h_default

Get default value for h
get_initial_n

Calculate initial population abundances
get_species_time_rate_from_sim

Apply a species rate function over saved simulation times
get_sim_rate_time_elements

Get selected saved time steps for a simulation rate
initialNOther<-

Initial values for other ecosystem components
interpolate_in_log_size

Interpolate a series linearly in the logarithm of size
indicator_functions

Description of indicator functions
initial_effort

Initial fishing effort
get_time_elements

Get array indices for a time range in a MizerSim object
initialNResource<-

Initial value for resource spectrum
initialN<-

Initial values for fish spectra
get_yield_observed

Observed yield of each species
inter

Alias for NS_interaction
install_tmp_gear

Add a gear that exerts the fishing mortality being scanned
log_breaks

Helper function to produce nice breaks on logarithmic axes
lognormal_pred_kernel

Lognormal predation kernel
l2w

Length-weight conversion
isVersionRequirement

Test whether a requirement string is a dotted version number
is_validated

Keep track of which MizerParams objects have been fully validated
interpolate_relative_frames

Put two series on a common size grid before comparing them
length_at_size

Length of an individual at each weight on the size grid
knife_edge_length

Length based knife-edge selectivity function
knife_edge

Weight based knife-edge selectivity function
isSteady

Check whether a model is at steady state
merge_dim_labels

Merge two ordered sets of dimension labels
markBackground

Designate species as background species
matchNumbers

Match numbers to observations
matchBiomasses

Match biomasses to observations
make_mizer_plot

Tag a ggplot object as a mizer plot
makeExtensions

Build a versioned extension list from requirements and versions
matchGrowth

Adjust model to produce observed growth
match_to

Match a quantity to observations species by species
measure_on_attractor

Measure a quantity on the attractor a projection settled on
make_linesize

Construct a named vector of line widths for a plot
mizerMort

Get total mortality rate needed to project standard mizer model
mizerEGrowth

Get energy rate available for growth needed to project standard mizer model
mizerERepro

Get energy rate available for reproduction needed to project standard mizer model
mizer-package

mizer: Multi-species size-based modelling in R
mizerFeedingLevel

Get feeding level needed to project standard mizer model
mizerFMort

Get the total fishing mortality rate from all fishing gears
mizerEReproAndGrowth

Get energy rate available for reproduction and growth needed to project standard mizer model
mizerFMortGear

Get the fishing mortality needed to project standard mizer model
mizerEncounter

Get encounter rate during projection
mizerDiffusion

Calculate diffusion rate
mizerResourceMort

Get predation mortality rate for resource needed to project standard mizer model
mizerRDI

Get density-independent rate of reproduction needed to project standard mizer model
mizer_needs_upgrading

Whether the core mizer slots of an object need upgrading
needed_rates

Determine which rates must be calculated to obtain a set of target rates
mizer_rates_subset

Calculate a selected subset of the rates
mizerPredMort

Get total predation mortality rate needed to project standard mizer model
mizerRates

Get all rates needed to project standard mizer model
mizerPredRate

Get predation rate needed to project standard mizer model
mizer_tooltip_vars

Determine the tooltip variables for a mizer plot
model_observation

The modelled counterpart of an observation
params_as_sim

A MizerSim holding only the state stored in a MizerParams
other_mort

Extra contributions to the mortality and encounter rates
newCommunityParams

Set up parameters for a community-type model
needs_upgrading

Determine whether a MizerParams or MizerSim object needs to be upgraded
newSingleSpeciesParams

Set up parameters for a single species in a power-law background
objectExtensions

Get the extensions stored in a mizer object
newTraitParams

Set up parameters for a trait-based multispecies model
noRDD

Give density-independent reproduction rate
newMultispeciesParams

Set up parameters for a general multispecies model
observation_columns

The species parameter columns holding an observation
parsePlotLog

Parse the log-axis arguments of a mizer plot function
plot2

Compare two mizer arrays in a single plot
plot.ArraySpeciesBySize

Plot method for ArraySpeciesBySize objects
plot.MizerScan

Plot method for MizerScan objects
plot

Plot mizer arrays
plotBiomass

Plot the biomass of species through time
plot.ArrayTimeByResourceBySize

Plot method for ArrayTimeByResourceBySize objects
plot.ArrayResourceBySize

Plot method for ArrayResourceBySize objects
plot.ArrayTimeBySpeciesBySize

Plot method for ArrayTimeBySpeciesBySize objects
plot.ArrayTimeBySpecies

Plot method for ArrayTimeBySpecies objects
plotFMort

Plot total fishing mortality of each species by size
plotFeedingLevel

Plot the feeding level of species by size
plotBiomassObservedVsModel

Plotting observed vs. model biomass data
plotComparisonDataFrame

Make a plot comparing two data frames
plotDiet

Plot diet, resolved by prey species, as function of predator at size.
plotGrowthCurves

Plot growth curves
plotCDF2

Compare cumulative abundance or biomass distributions from two objects
plotHover.ArraySpeciesBySize

Create a hover-enabled plotly plot from a mizer object
plotCDF

Plot cumulative abundance or biomass distributions
plotDataFrame

Make a plot from a data frame
plotM2

Alias for plotPredMort()
plotMizerSim

Summary plot for MizerSim objects
plotRelativeDataFrame

Make a plot of the relative difference between two data frames
plotRelative

Plot relative difference between two mizer arrays
plotYield

Plot the total yield of species through time
plotSpectraRelative

Plot relative difference between abundance spectra
plotSpectra

Plot abundance and biomass spectra
plotMizerParams

Summary plot for MizerParams objects
plotSpectra2

Compare abundance and biomass spectra from two objects
plotPredMort

Plot predation mortality rate of each species against size
plotYieldVsF

Plot the yield of a species against the fishing mortality on it
plot_growth_curves

Build the growth-curves plot
plotYieldObservedVsModel

Plotting observed vs. model yields
plotYieldGear

Plot the total yield of each species by gear through time
plot_length_params

The weight-length parameters to plot each row of plotting data with
plot_size_axis

Validate the size-axis argument
plot_size_tooltip

Assemble the tooltip variables for a size-axis plot
plot_feeding_level

Build the feeding-level plot
plot_diet

Build the diet-composition plot
plot_cdf

Build the cumulative-distribution plot
plot_y_is_log

Whether a plot's y axis is logarithmic
plot_spectra

Build the size-spectrum plot
plotting_functions

Description of the plotting functions
power_law_pred_kernel

Power-law predation kernel
prepare_ArrayTimeBySpecies_plot_data

The complete plotting data of a time-by-species array
plot_size_xlab

Axis label for a given size axis
plot_size_xlim

Choose the x-axis limits for a given size axis
power_law_bin_average

Bin average of a power law over geometric bins
plot_size_x_var

Name of the x-variable for a given size axis
prepare_MizerScan_plot_data

Prepare the data frame for plotting a MizerScan
project_n_2

Project values with a predictor-corrector method
print.mizer_plot

Print a mizer plot
projectRDD

Get density-dependent reproduction rate during projection
prepare_spectra_cdf_data

Integrate spectra data into a cumulative distribution
project

Project size spectrum forward in time
project_simple

Project abundances by a given number of time steps into the future
print

Print mizer objects
project_n

Project values for first time step of Euler method
project_n_tr_bdf2

Project values with the TR-BDF2 method
projectUntilSettled

Project the dynamics until they settle
reexports

Objects exported from other packages
renameSpecies

Rename species
renameGear

Rename gears
removeSpecies

Remove species
removeBackgroundSpecies

Remove all background species
reconcileSpeciesParams

Reconcile the species parameters with the given species parameters
recordExtension

Record an extension and its version stamp on a mizer object
proportion_ylim

Y-axis limits for a plot of a proportion
record_given_species_params

Record the species parameters that have changed
relative_difference

Symmetric relative difference between two values
repair_params

Repair a MizerParams object
resource_constant

Keep resource abundance constant
resolve_spectrum_power

Resolve the power of weight multiplying a spectrum
resolve_second_order_w

Resolve a second_order_w value against the default scheme
resolve_array_type

Resolve the type of a mizer array
resource_length_defaults

Default weight-length parameters for the resource
report_scan_convergence

Report the scan values that did not settle on a fixed point
resolve_cdf_power

Resolve the power of weight for a cumulative distribution
resource_logistic

Project resource using logistic model
resource_length_params

The weight-length parameters of the resource
resource_power_law

Construct the background resource power-law spectrum
scaleModel

Change scale of the model
runExtensionUpgrades

Run the registered extension upgrade methods on an object
saveParams

Save and restore mizer objects
scaleRates

Rescale all rates in a mizer model
scanEffort

Setters for scanning a model
scanModel

Scan a model over a range of values
resource_semichemostat

Project resource using semichemostat model
resource_params

Resource parameters
scan_gear_installed

Has a fishing-mortality scan already been installed in this model?
select_gear_rows

The gear params rows whose fishing mortality is to be varied
setComponent

Add a dynamical ecosystem component
setExtDiffusion

Set external diffusion rate
setColours

Set line colours and line types to be used in mizer plots
setBevertonHolt

Set Beverton-Holt reproduction without changing the steady state
second_order_w

Get or set the second_order_w flags
scan_plot_params

The params object to use when plotting a MizerScan
scan_y_label

Axis labels for a MizerScan
scan_x_var

The x and y variables of a MizerScan
select_scan_series

Pick out some of the series of a scan
setFishing

Set fishing parameters
setPredKernel

Set predation kernel
setInteraction

Set species interaction matrix
setInitialValues

Set initial values to values from a simulation
setMaxIntakeRate

Set maximum intake rate
setExtEncounter

Set external encounter rate
setParams

Set or change any model parameters
setMetabolicRate

Set metabolic rate
setMetadata

Set metadata for a model
setExtMort

Set external mortality rate
set_community_model

Deprecated function for setting up parameters for a community-type model
setSearchVolume

Set search volume
set_species_param_default

Set a species parameter to a default value
set_multispecies_model

Deprecated obsolete function for setting up multispecies parameters
setRateFunction

Set own rate function to replace mizer rate function
setReproduction

Set reproduction parameters
set_trait_model

Deprecated function for setting up parameters for a trait-based model
setResource

Set resource dynamics
setRmax

Alias for setBevertonHolt()
set_scan_maximum

Record where each series attains its maximum
signal_info

Signal information about a choice mizer made
signal_removed_species_params

Signal that species parameter columns have been removed
signal_frozen_changes

Signal the changes to species parameters that cannot take effect
signal_frozen

Signal that a change the user made cannot take effect
signal_gear_params_changes

Signal a gear parameter changed through the given species parameters
signal_not_recalculated

Signal that a rate array was not recalculated because it is frozen
signal_defaulted_length_weight

Report a selectivity built from a defaulted weight-length relationship
sigmoid_weight

Weight based sigmoidal selectivity function
signal_ignored_changes

Signal the changes that are ignored because another parameter was given
sigmoid_length

Length based sigmoid selectivity function
simExtensionClass

Derive the MizerSim extension class name for a given extension
sizeIntegral

Integrate a quantity over the size spectrum
species_params

Species parameters
slotNames

S4/S3 compatibility slotNames helper
size_dim_labels

Identify the dimensions of an array over the size grid
slot<-

S4/S3 compatibility slot assignment helper
slot

S4/S3 compatibility slot access helper
sim_species_rate

Build a MizerSim rate getter that resolves the rate functions once
sim_size_rate

Build a MizerSim rate getter that resolves the rate functions once
species_size_range_mask

Which size classes lie inside each species' own size range
steadySingleSpecies

Set initial abundances to solution of steady-state equation with current rates
summary

Summarise mizer objects
spectra_bin_width

Look up the size-bin widths for spectra data
superseded_steady

Superseded names for the steady-state finders
summary_functions

Description of summary functions
str

Display the structure of mizer objects
superseded_accessors

Superseded get-prefixed aliases for values stored in a model
spectra_y_label

Y-axis label for a size-spectrum plot
spectrum_density_wrt

The density measure of a power-based spectrum
sweep_arms

The order in which to project the scan values
upgrade.MizerParams

Upgrade the core slots of a MizerParams object
use_predation_diffusion

Get or set the use_predation_diffusion flag
tuneSteadyState

Tune a model so that the state it is in becomes a steady state
truncated_lognormal_pred_kernel

Truncated lognormal predation kernel
upgradeParams

Back-compatible wrapper for the core MizerParams upgrade
upgrade.MizerSim

Upgrade a MizerSim object from earlier versions
upgradeSim

Back-compatible wrapper for the MizerSim upgrade
trapezoidal_bin_average

Trapezoidal bin-average of a per-bin weight
total_contributors

Assemble the contributors to the total of a species-by-size array
upgrade_s4_to_s3

Convert an S4 MizerParams or MizerSim object to an S3 object
validSim

Validate MizerSim object and upgrade if necessary
validGearParams

Check validity of gear parameters and set defaults
validParams

Validate MizerParams object and upgrade if necessary
valid_species_arg

Helper function to assure validity of species argument
validSpeciesParams

Validate species parameter data frame
valid_gears_arg

Helper function to assure validity of gears argument
validEffortVector

Make a valid effort vector
validate_array_type

Validate the type of a mizer array
validObject

Validity checker compatibility helper
validateExtensionsVector

Validate and normalise an extensions named character vector
validation_key

Fingerprint of the slots that determine the outcome of the repair and structural validity checks in validParams()
w

Size bins
validate_second_order_w

Apply a second_order_w value to the current slot list
with_info_level

Collect and report the information signals raised while setting parameters
validate_density_wrt

Validate a density measure