powered by
Creates a Zip archive of all results in CSV format.
export(object, ...)# S4 method for MultivariateAnalysis export(object, file, flags = "-r9Xj", ...)
# S4 method for MultivariateAnalysis export(object, file, flags = "-r9Xj", ...)
A CA, MCA or PCA object.
CA
MCA
PCA
Currently not used.
A character string specifying the pathname of the zip file.
character
A character string of flags (see utils::zip()).
utils::zip()
N. Frerebeau
utils::write.csv(), utils::zip()
utils::write.csv()
Other getters: get_contributions(), get_coordinates(), get_data(), get_eigenvalues()
get_contributions()
get_coordinates()
get_data()
get_eigenvalues()
if (FALSE) { ## Load data data("iris") ## Compute principal components analysis X <- pca(iris) ## Export results export(X, file = "results.zip") }
Run the code above in your browser using DataLab