Reputation: 3
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?
Upvotes: 0
Views: 367
Reputation: 11603
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.
Upvotes: 1