Closed vincentarelbundock closed 11 months ago
Hi, there are also two typos in the last plot of the vignette:
library(tidymodels)
library(marginaleffects)
# broken
workflow(factor(gear) ~ hp * mpg, multinom_reg()) |>
fit(data = mtcars) |>
get_vcov()
# works
set_engine(multinom_reg(), "nnet") |>
fit(factor(gear) ~ mpg * hp, data = mtcars) |>
get_vcov()
Thanks @etiennebacher Should be fixed now
mlr3
ortidymodels
when the underlying engine is not supported as a standalone model.tidymodels