logisticSolveX: Solve for X based on models parameters

Description Usage Arguments See Also Examples

View source: R/logisticSolveX.R

Description

Given some set of parameters specific to a particular model, solve for x.

Usage

1
logisticSolveX(y, C, a, b)

Arguments

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.

See Also

logisticFit logisticFitPred

Examples

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)

MichaelJMahometa/OnRampsR documentation built on Feb. 12, 2020, 12:31 a.m.