Learn R Programming

biogrowth (version 1.0.6)

IsothermalGrowth: IsothermalGrowth class

Description

[Superseded]

The class IsothermalGrowth has been superseded by the top-level class GrowthPrediction, which provides a unified approach for growth modelling.

Still, it is still returned if the superseded predict_isothermal_growth() is called.

It is a subclass of list with the items:

  • simulation: A tibble with the model simulation.

  • model: The name of the model used for the predictions.

  • pars: A list with the values of the model parameters.

Usage

# S3 method for IsothermalGrowth
print(x, ...)

# S3 method for IsothermalGrowth plot( x, y = NULL, ..., line_col = "black", line_size = 1, line_type = "solid", ylims = NULL, label_y = NULL, label_x = "time" )

# S3 method for IsothermalGrowth coef(object, ...)

Arguments

x

The object of class IsothermalGrowth to plot.

...

ignored

y

ignored

line_col

Aesthetic parameter to change the colour of the line, see: ggplot2::geom_line()

line_size

Aesthetic parameter to change the thickness of the line, see: ggplot2::geom_line()

line_type

Aesthetic parameter to change the type of the line, takes numbers (1-6) or strings ("solid") see: ggplot2::geom_line()

ylims

Two-dimensional numeric vector with the limits of the y-axis (or NULL, which is the default)

label_y

Title of the y-axis

label_x

Title of the x-axis

object

an instance of IsothermalGrowth

Methods (by generic)

  • print(IsothermalGrowth): print of the model

  • plot(IsothermalGrowth): plot of the predicted growth curve.

  • coef(IsothermalGrowth): coefficients of the model