Description Usage Arguments See Also Examples
View source: R/logisticSolveX.R
Given some set of parameters specific to a particular model, solve for x.
1 | logisticSolveX(y, C, a, b)
|
y |
value of a y-axis point. |
C |
value of for the Carrying Capactiy parameter in a logistic growth model. |
a |
value of for the "a" parameter in a logistic growth model. |
b |
value of for the "b" parameter in a logistic growth model. |
1 2 3 4 | data(wolf)
wolf$Time <- wolf$Year - min(wolf$Year)
l <- logisticFit(wolf$Time, wolf$Number)
logisticSolveX(100, l$C, l$a, l$b)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.