Qconcalc: Difference between revisions

From Eigenvector Research Documentation Wiki
Jump to navigation Jump to search
imported>Chuck
imported>Jeremy
No edit summary
 
(One intermediate revision by one other user not shown)
Line 12: Line 12:
This function calculates the Q contributions corresponding to the application of either the original calibration data, or an external set of test data, to a PLS or PCA model.
This function calculates the Q contributions corresponding to the application of either the original calibration data, or an external set of test data, to a PLS or PCA model.


If the model '''model''' was created using the "blockdetails = 'all'" option in [[pls]] or [[pca]] (or whatever function was used to create the model), then '''newx''' can be omitted to retrieve the Q contributions for the calibration data used to build the model. Note, however, that this option is not the default option for these functions, so it is unlikely that this call will work unless you have specifically created the model with the appropriate call.
If the model <tt>model</tt> was created using the "blockdetails = 'all'" option in [[pls]] or [[pca]] (or whatever function was used to create the model), then <tt>newx</tt> can be omitted to retrieve the Q contributions for the calibration data used to build the model. Note, however, that this option is not the default option for these functions, so it is unlikely that this call will work unless you have specifically created the model with the appropriate call.


====Inputs====
====Inputs====
Line 21: Line 21:
====Outputs====
====Outputs====


* '''qcon''' = matrix Q contributions for all variables used in '''model''', for all calibration objects, or objects represented in '''newx'''
* '''qcon''' = matrix of Q contributions for all variables used in '''model''', for all calibration objects, or objects represented in '''newx'''


===See Also===
===See Also===


[[datahat]], [[pca]], [[pcr]], [[pls]], [[tconcalc]]
[[datahat]], [[pca]], [[pcr]], [[pls]], [[tconcalc]]

Latest revision as of 14:49, 10 October 2008

Purpose

Calculate Q residuals contributions for predictions on a model.

Synopsis

qcon = qconcalc(newx,model)
qcon = qconcalc(model); %requires that model contains residuals

Description

This function calculates the Q contributions corresponding to the application of either the original calibration data, or an external set of test data, to a PLS or PCA model.

If the model model was created using the "blockdetails = 'all'" option in pls or pca (or whatever function was used to create the model), then newx can be omitted to retrieve the Q contributions for the calibration data used to build the model. Note, however, that this option is not the default option for these functions, so it is unlikely that this call will work unless you have specifically created the model with the appropriate call.

Inputs

  • newx = matrix containing external test data
  • model = structure for the PLS or PCA model to which the data is to be applied

Outputs

  • qcon = matrix of Q contributions for all variables used in model, for all calibration objects, or objects represented in newx

See Also

datahat, pca, pcr, pls, tconcalc