I was checking tidymodels for multivariate regression and saw this example here: https://www.tidymodels.org/learn/models/pls/
This covers multivariate for Partial Least Squares model.
Is there a page that states what models currently support multivariate regression?
I believe the current models that support multivariate (more than one outcome) regression are:
mlp()
mars()
linear_reg()
This list was made by looking for which models use the maybe_multivariate()
internal helper, but we should document this better somehow.