Factoshiny: Choose the Factoshiny function to perform the analysis

View source: R/Factoshiny.R

FactoshinyR Documentation

Choose the Factoshiny function to perform the analysis

Description

Choose betwwen all the available functions of the package

Usage

Factoshiny(X, language="auto")

Arguments

X

a data frame with n rows (individuals) and p columns (numeric variables) or a Factoshiny result

language

string corresponding to the language you want for the interface. "french" or "english" are available; by default "auto" will automatically find the language of your computer

Value

Open a web interface that allows you to choose the method you want to use on your dataset

Author(s)

Francois Husson

Examples

## Not run: 
require(FactoMineR)
data(decathlon)
# Principal Component Analysis with Factoshiny:
res.shiny <- Factoshiny(decathlon)

# Find your app the way you left it (by clicking on the "Quit the app" button)
res.shiny2=Factoshiny(res.shiny)

#PCAshiny on a result of a PCA
res.pca <- PCA(decathlon, quanti.sup = 11:12, quali.sup=13)
res.shiny=Factoshiny(res.pca)

## End(Not run)

Factoshiny documentation built on April 4, 2025, 5:21 a.m.