Dimension Reduction - Save Variable(s) - Components/Dimensions

From Q
Jump to navigation Jump to search

Generate variables in your data set containing transformed variables from dimension reduction methods such as principal components analysis

Generate a new set of variables in your data set which contains the transformed variables from dimension reduction methods such as Principal Components Analysisprincipal components analysis, Principal Components Analysis (Text)principal components analysis (text), Multiple Correspondence Analysismultiple correspondence analysis or t-SNEt-SNE. The new variables can then be used as inputs into other analyses. You must select the R output which contains your analysis before running this script.

Example

A table of the transformed variables from t-SNE.

Code

includeWeb("QScript R Output Functions");

main();
 
function main() {
    saveVariables("Scores", "Principal Components Analysis, Principal Components Analysis (Text), Multidimensional Scaling, t-SNE or Multiple Correspondence Analysis", 
    "fitted(", ")", null, null, null, ["flipFactorAnalysis", "mcaObj"]);
}

See Also