View source: R/utils_S3_print.R
print.modeler | R Documentation |
modeler
Prints information about modeler
function.
## S3 method for class 'modeler'
print(x, ...)
x |
An object fitted with the function |
... |
Options used by the tibble package to format the output. See 'tibble::print()' for more details. |
an object inheriting from class modeler
.
Johan Aparicio [aut]
library(flexFitR)
data(dt_potato)
mod_1 <- dt_potato |>
modeler(
x = DAP,
y = Canopy,
grp = Plot,
fn = "fn_lin_plat",
parameters = c(t1 = 45, t2 = 80, k = 0.9),
subset = c(1:5)
)
plot(mod_1, id = c(1:4))
print(mod_1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.