export {dimensio} | R Documentation |
Creates a Zip archive of all results in CSV format.
export(object, ...)
## S4 method for signature 'MultivariateAnalysis'
export(object, file, flags = "-r9Xj", ...)
object |
|
... |
Currently not used. |
file |
A |
flags |
A |
N. Frerebeau
utils::write.csv()
, utils::zip()
Other getters:
get_contributions()
,
get_coordinates()
,
get_data()
,
get_eigenvalues()
## Not run:
## Load data
data("iris")
## Compute principal components analysis
X <- pca(iris)
## Export results
export(X, file = "results.zip")
## End(Not run)