| nonlinear_freundlich | R Documentation |
Non-linear Freundlich Model
nonlinear_freundlich(Ce, Qe)
Ce |
Numeric vector of equilibrium concentrations. |
Qe |
Numeric vector of amount adsorbed. |
A named list of Freundlich parameters and model details.
Other nonlinear:
nonlinear_bet(),
nonlinear_langmuir(),
nonlinear_temkin()
Ce <- c(0.5, 1, 2, 4, 6, 8)
Qe <- c(0.3, 0.8, 1.6, 2.4, 2.9, 3.2)
result <- nonlinear_freundlich(Ce, Qe)
print(result$`Freundlich Kf`)
print(result$`Freundlich n`)
print(result$AIC)
print(result$`Pseudo R2`)
print(result$Plot)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.