Skip to contents

Creates a Zip archive of all results in CSV format.

Usage

export(object, ...)

# S4 method for class 'MultivariateAnalysis'
export(object, file, flags = "-r9Xj", ...)

Arguments

object

A CA, MCA or PCA object.

...

Currently not used.

file

A character string specifying the pathname of the zip file.

flags

A character string of flags (see utils::zip()).

Author

N. Frerebeau

Examples

if (FALSE) { # \dontrun{
## Load data
data("iris")

## Compute principal components analysis
X <- pca(iris)

## Export results
export(X, file = "results.zip")
} # }