The 'BC.4' and 'BC.5' logistical models provide Brain-Cousens' modified logistical models to describe u-shaped hormesis. This model was extracted from the 'drc' package and adapted for temperature analysis in seed germination
BC_model(
trat,
resp,
npar = "BC.4",
error = "SE",
ylab = "Germination (%)",
xlab = expression("Temperature ("^"o" * "C)"),
theme = theme_classic(),
legend.position = "top",
cardinal = 0,
r2 = "all",
width.bar = NA,
scale = "none",
textsize = 12,
pointsize = 4.5,
linesize = 0.8,
pointshape = 21,
font.family = "sans"
)CoefficientsCoefficients and their p values
Optimum temperatureOptimum temperature (equivalent to the maximum point)
Optimum temperature responseResponse at the optimal temperature (equivalent to the maximum point)
Minimal temperatureTemperature that has the lowest response
Minimal temperature responseLowest predicted response
Predicted maximum basal valueLower basal limit temperature based on the value set by the user (default is 0)
Predicted minimum basal valueUpper basal limit temperature based on the value set by the user (default is 0)
AICAkaike information criterion
BICBayesian Inference Criterion
r-squaredDetermination coefficient
RMSERoot mean square error
graficoGraph in ggplot2 with equation
Numerical or complex vector with treatments
Numerical vector containing the response of the experiment.
Number of model parameters (default is BC.4)
Error bar (It can be SE - default, SD or FALSE)
Variable response name (Accepts the expression() function)
Treatments name (Accepts the expression() function)
ggplot2 theme (default is theme_bw())
Legend position (default is c(0.3,0.8))
Defines the value of y considered extreme (default considers 0 germination)
Coefficient of determination of the mean or all values (default is all)
bar width
Sets x scale (default is none, can be "log")
Font size
shape size
line size
format point (default is 21)
Font family (default is sans)
Model imported from the drc package (Ritz et al., 2016)
Gabriel Danilo Shimizu
Leandro Simoes Azeredo Goncalves
The model function for the Brain-Cousens model (Brain and Cousens, 1989) is $$ f(x, b,c,d,e,f) = c + \frac{d-c+fx}{1+\exp(b(\log(x)-\log(e)))}$$ and it is a five-parameter model, obtained by extending the four-parameter log-logistic model (LL.4 to take into account inverse u-shaped hormesis effects. Fixing the lower limit at 0 yields the four-parameter model $$f(x) = 0 + \frac{d-0+fx}{1+\exp(b(\log(x)-\log(e)))}$$ used by van Ewijk and Hoekstra (1993).
Seber, G. A. F. and Wild, C. J (1989) Nonlinear Regression, New York: Wiley and Sons (p. 330).
Ritz, C.; STREBIG, J.C. and RITZ, M.C. Package ‘drc’. Creative Commons: Mountain View, CA, USA, 2016.
library(seedreg)
data("aristolochia")
attach(aristolochia)
#================================
# Germination
#================================
BC_model(trat,germ)
#================================
# Germination speed
#================================
BC_model(trat, vel, ylab=expression("v"~(dias^-1)))
Run the code above in your browser using DataLab