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.
# 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, ...)
The object of class IsothermalGrowth to plot.
ignored
ignored
Aesthetic parameter to change the colour of the line,
see: ggplot2::geom_line()
Aesthetic parameter to change the thickness of the line,
see: ggplot2::geom_line()
Aesthetic parameter to change the type of the line,
takes numbers (1-6) or strings ("solid") see: ggplot2::geom_line()
Two-dimensional numeric vector with the limits of the y-axis
(or NULL
, which is the default)
Title of the y-axis
Title of the x-axis
an instance of IsothermalGrowth
print(IsothermalGrowth)
: print of the model
plot(IsothermalGrowth)
: plot of the predicted growth curve.
coef(IsothermalGrowth)
: coefficients of the model