View source: R/DyMEP_dose_response_curves.R
asymptotic_prediction | R Documentation |
DRC function: asymptotic_prediction
asymptotic_prediction(x, params)
x |
input variable |
params |
list of input parameter; Asym a numeric parameter representing the horizontal asymptote on the right side (very large values of input). ; lrc a numeric parameter representing the natural logarithm of the rate constant; c0 a numeric parameter representing the x for which the response is zero. |
value with asymptotic response
asymptotic_prediction(5,list("Asym_value"=0.5,
"lrc_value"=0.2,
"c0_value"=4))
# visualization
asymptote <- lapply(seq(0, 10, 0.1),
asymptotic_prediction,
list("Asym_value"=0.5, "lrc_value"=0.2, "c0_value"=4))
plot(seq(0, 10, 0.1), asymptote)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.