ef_fun | R Documentation |
ef_fun
returns amount of vehicles at each age
ef_fun(
ef,
type = "logistic",
x = 1:length(ef),
x0 = mean(ef),
k = 1/4,
L = max(ef),
verbose = TRUE
)
ef |
Numeric; numeric vector of emission factors. |
type |
Character; "logistic" by default so far. |
x |
Numeric; vector for ages of use. |
x0 |
Numeric; the x-value of the sigmoid's midpoint, |
k |
Numeric; the steepness of the curve. |
L |
Integer; the curve's maximum value. |
verbose |
Logical; to show the equation. |
numeric vector.
https://en.wikipedia.org/wiki/Logistic_function
## Not run:
CO <- ef_cetesb(p = "CO", veh = "PC_G")
ef_logit <- ef_fun(ef = CO, x0 = 27, k = 0.4, L = max(CO))
df <- data.frame(CO, ef_logit)
colplot(df)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.