Package 'kinesis'

Title: 'shiny' Applications for the 'tesselle' Packages
Description: A collection of 'shiny' applications for the 'tesselle' packages.
Authors: Nicolas Frerebeau [aut, cre] , Brice Lebrun [ctb] (<https://orcid.org/0000-0001-7503-8685>, Logo designer), Université Bordeaux Montaigne [fnd], CNRS [fnd]
Maintainer: Nicolas Frerebeau <[email protected]>
License: GPL (>= 3)
Version: 0.1.0.9000
Built: 2025-01-14 14:20:28 UTC
Source: https://github.com/tesselle/kinesis

Help Index


Run an App

Description

A wrapper for shiny::shinyAppDir().

Usage

run_app(
  app = c("diversity", "seriation", "source", "ternary", "ca", "pca"),
  bookmark = FALSE,
  options = list(launch.browser = interactive())
)

Arguments

app

A character string specifying the Shiny application to run (see details). Any unambiguous substring can be given.

bookmark

A logical scalar: should server-side bookmarking of the application be enabled (see shiny::enableBookmarking())?

options

A list of named options that should be passed to the shiny::shinyAppDir() call.

Details

Application name Keyword
Correspondence Analysis ca
Principal Components Analysis pca
Diversity Measures diversity
Matrix Seriation seriation
Compositional Data Analysis source
Ternary Plot ternary

Value

A shiny application object.

Author(s)

N. Frerebeau

Examples

## Not run: 
run_app("seriation")

## End(Not run)