View source: R/error_function_c4_aci_hyperbola.R
error_function_c4_aci_hyperbola | R Documentation |
Creates a function that returns an error value (the negative of the natural
logarithm of the likelihood) representing the amount of agreement between
modeled and measured An
values. When this function is minimized, the
likelihood is maximized.
Internally, this function uses
link{calculate_c4_assimilation_hyperbola}
to calculate assimilation
rate values that are compared to the measured ones.
error_function_c4_aci_hyperbola(
replicate_exdf,
fit_options = list(),
sd_A = 1,
a_column_name = 'A',
ci_column_name = 'Ci',
hard_constraints = 0
)
replicate_exdf |
An |
fit_options |
A list of named elements representing fit options to use for each parameter.
Values supplied here override the default values (see details below). Each
element must be |
sd_A |
The standard deviation of the measured values of the net CO2 assimilation
rate, expressed in units of |
a_column_name |
The name of the column in |
ci_column_name |
The name of the column in |
hard_constraints |
To be passed to |
When fitting A-Ci curves, it is necessary to define a function that calculates
the likelihood of a given set of c4_curvature
, c4_slope
,
rL
, and Vmax
values by comparing a model prediction to a
measured curve. This function will be passed to an optimization algorithm
which will determine the values that produce the smallest error.
The error_function_c4_aci_hyperbola
returns such a function, which is
based on a particular A-Ci curve and a set of fitting options. It is possible
to just fit a subset of the available fitting parameters; by default, all are
fit. This behavior can be changed via the fit_options
argument.
For practical reasons, the function actually returns values of -ln(L)
,
where L
is the likelihood. The logarithm of L
is simpler to
calculate than L
itself, and the minus sign converts the problem from
a maximization to a minimization, which is important because most optimizers
are designed to minimize a value.
A penalty is added to the error value for any parameter combination where
An
is not a number, or where
calculate_c4_assimilation_hyperbola
produces an error.
A function with one input argument guess
, which should be a numeric
vector representing values of the parameters to be fitted (which are specified
by the fit_options
input argument.) Each element of guess
is the
value of one parameter (arranged in alphabetical order.) For example, with the
default settings, guess
should contain values of c4_curvature
,
c4_slope
, rL
, and Vmax
(in that order).
# Read an example Licor file included in the PhotoGEA package
licor_file <- read_gasex_file(
PhotoGEA_example_file_path('c4_aci_1.xlsx')
)
# Define a new column that uniquely identifies each curve
licor_file[, 'species_plot'] <-
paste(licor_file[, 'species'], '-', licor_file[, 'plot'] )
# Organize the data
licor_file <- organize_response_curve_data(
licor_file,
'species_plot',
c(9, 10, 16),
'CO2_r_sp'
)
# Define an error function for one curve from the set
error_fcn <- error_function_c4_aci_hyperbola(
licor_file[licor_file[, 'species_plot'] == 'maize - 5', , TRUE]
)
# Evaluate the error for c4_curvature = 0.8, c4_slope = 0.5, rL = 1.0, Vmax = 65
error_fcn(c(0.8, 0.5, 1.0, 65))
# Make a plot of error vs. Vmax when the other parameters are fixed to
# the values above.
vmax_error_fcn <- function(Vmax) {error_fcn(c(0.8, 0.5, 1.0, Vmax))}
vmax_seq <- seq(55, 75)
lattice::xyplot(
sapply(vmax_seq, vmax_error_fcn) ~ vmax_seq,
type = 'b',
xlab = 'Vmax (micromol / m^2 / s)',
ylab = 'Negative log likelihood (dimensionless)'
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.