logistic {colourvision} | R Documentation |
Generates a logistic curve.
logistic(x = seq(300, 700, 1), x0, L, k)
x |
Range. |
x0 |
Midpoint value. |
L |
Maximum value. |
k |
Steepness of the curve |
Felipe M. Gawryszewski f.gawry@gmail.com
https://en.wikipedia.org/wiki/Logistic_function
l<-logistic(x=seq(300,700,1), x0=650, L=50, k=0.04)
plot(l, type="l")