Ssqtable: Difference between revisions
Jump to navigation
Jump to search
imported>Jeremy (Importing text file) |
imported>Jeremy No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
===Purpose=== | ===Purpose=== | ||
Prints variance captured table to the command window. | Prints variance captured table to the command window. | ||
===Synopsis=== | ===Synopsis=== | ||
:ssqtable(ssq,''ncomp'') | :ssqtable(ssq,''ncomp'') | ||
===Description=== | ===Description=== | ||
SSQTABLE prints the variance captured table from input ssq to the command window for the desired number of factors ''ncomp''. If ssq is a standard model structure (e.g. from ANALYSIS), the model information is displayed along with the variance captured table (see MODLRDER). If ''ncomp'' is omitted, the entire available | |||
SSQTABLE prints the variance captured table from input <tt>ssq</tt> to the command window for the desired number of factors ''<tt>ncomp</tt>''. If <tt>ssq</tt> is a standard model structure (e.g. from ANALYSIS), the model information is displayed along with the variance captured table (see MODLRDER). If ''<tt>ncomp</tt>'' is omitted, the entire available table is displayed. | |||
===Examples=== | ===Examples=== | ||
For a standard model structure called modl (e.g. as returned by, ANALYSIS, PCA, or PLS functions) | For a standard model structure called modl (e.g. as returned by, ANALYSIS, PCA, or PLS functions) | ||
ssqtable(modl.detail.ssq,5) | |||
ssqtable(modl.detail.ssq,5) | |||
will print the variance captured table ''only'' for the first 5 factors to the command window. Alternatively, | will print the variance captured table ''only'' for the first 5 factors to the command window. Alternatively, | ||
ssqtable(modl,5) | |||
ssqtable(modl,5) | |||
will print ''both'' the model information and the variance captured table for first 5 factors. | will print ''both'' the model information and the variance captured table for first 5 factors. | ||
===See Also=== | ===See Also=== | ||
[[analysis]], [[modlrder]], [[pca]], [[pcr]], [[pls]] | [[analysis]], [[modlrder]], [[pca]], [[pcr]], [[pls]] |
Latest revision as of 12:37, 9 October 2008
Purpose
Prints variance captured table to the command window.
Synopsis
- ssqtable(ssq,ncomp)
Description
SSQTABLE prints the variance captured table from input ssq to the command window for the desired number of factors ncomp. If ssq is a standard model structure (e.g. from ANALYSIS), the model information is displayed along with the variance captured table (see MODLRDER). If ncomp is omitted, the entire available table is displayed.
Examples
For a standard model structure called modl (e.g. as returned by, ANALYSIS, PCA, or PLS functions)
ssqtable(modl.detail.ssq,5)
will print the variance captured table only for the first 5 factors to the command window. Alternatively,
ssqtable(modl,5)
will print both the model information and the variance captured table for first 5 factors.