lalvim / PartialLeastSquaresRegressor.jl

Implementation of a Partial Least Squares Regressor
MIT License
40 stars 8 forks source link

Extract Loading and Score plot #26

Closed sawenchalmers closed 3 years ago

sawenchalmers commented 3 years ago

How can loadings and scores be extracted after performing fit using fit!(pls_machine, rows = train)?

ablaom commented 3 years ago

@lalvim Should probably answer this. But, more generally, if you are seeking access to learned parameters in an MLJ machine, use fitted_params(mach), if it is some other byproduct of training, use report(mach). Have you tried these?

sawenchalmers commented 3 years ago

Perfect, this is what I needed.