Polypred: Difference between revisions
Jump to navigation
Jump to search
imported>Jeremy (Importing text file) |
imported>Donal No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
===Purpose=== | ===Purpose=== | ||
Make predictions for partial least squares regression models with polynomial inner relations. | Make predictions for partial least squares regression models with polynomial inner relations. | ||
===Synopsis=== | ===Synopsis=== | ||
:ypred = polypred(x,b,p,q,w,lv) | :ypred = polypred(x,b,p,q,w,lv) | ||
===Description=== | ===Description=== | ||
POLYPRED uses parameters created by the routine POLYPLS to make predictions from a new x-block matrix of predictor variables x. | |||
POLYPRED uses parameters created by the routine POLYPLS to make predictions from a new x-block matrix of predictor variables x. | |||
Note: It is important that the scaling of the new data x is the same as that used to create the model parameters in POLYPLS. | Note: It is important that the scaling of the new data x is the same as that used to create the model parameters in POLYPLS. | ||
====Inputs==== | |||
* '''b''' = a matrix of polynomial coefficients for the inner relationship, | |||
* '''p''' = the x-block latent variable loadings, | |||
* '''q''' = the y-block variable loadings, | |||
* '''w''' = the x-block latent variable weights, | |||
* '''lv''' = the number of latent variables lv. | |||
====Outputs==== | |||
* '''ypred''' = y-block predictions. | |||
===See Also=== | ===See Also=== | ||
[[lwrxy]], [[polypls]], [[pls]] | [[lwrxy]], [[polypls]], [[pls]] |
Latest revision as of 13:53, 6 March 2013
Purpose
Make predictions for partial least squares regression models with polynomial inner relations.
Synopsis
- ypred = polypred(x,b,p,q,w,lv)
Description
POLYPRED uses parameters created by the routine POLYPLS to make predictions from a new x-block matrix of predictor variables x.
Note: It is important that the scaling of the new data x is the same as that used to create the model parameters in POLYPLS.
Inputs
- b = a matrix of polynomial coefficients for the inner relationship,
- p = the x-block latent variable loadings,
- q = the y-block variable loadings,
- w = the x-block latent variable weights,
- lv = the number of latent variables lv.
Outputs
- ypred = y-block predictions.