tests/testthat/examples/train_example.R

library(mlflow)

# read parameters
column <- mlflow_log_param("column", 1)

# log total rows
mlflow_log_metric("rows", nrow(iris))

# train model
model <- lm(Sepal.Width ~ iris[[column]], iris)

# log models intercept
mlflow_log_metric("intercept", model$coefficients[["(Intercept)"]])

Try the mlflow package in your browser

Any scripts or data that you put into this service are public.

mlflow documentation built on June 18, 2025, 9:14 a.m.