cs_PCA_FactoMineR: cs_PCA_FactoMineR

Description Usage Arguments Details Value Functions Examples

Description

A shiny module for cs_PCA_FactoMineR.

Usage

1
2
3
4
5

Arguments

id

An ID string of module to connecting UI function and Server function.

csbl_vars

A tibble of vars of cross-section.

use_online_data

A logical to determine whether to use test data from database or not. Default FALSE means to use achieved data for tests.

Details

The module is an UI for user to display plots of PCA by FactoMineR and factoextra package.

Value

Functions

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
## Not run: 
# Set up control UI in app UI
ui <- fluidPage(
  cs_PCA_FactoMineR_ui("cs_PCA_FactoMineR_module")
)

# Call control server in App server
server <- function(input, output, session) {
  cs_PCA_FactoMineR <- cs_PCA_FactoMineR_server(
    "cs_PCA_FactoMineR_module",
    csbl_vars = reactive(csbl_vars)
  )
}

# Run testing App for integration testing
cs_PCA_FactoMineR_app()

## End(Not run)

chriszheng2016/zstexplorer documentation built on June 13, 2021, 9:47 a.m.