Package 'ShinyWizard'

Title: An Interactive Wizard to Design, Build, and Deploy R Packages Demo Presentation
Description: Design, build, and deploy R packages demo presentations by an interactive wizard. Set up unique title, logo and themes. Add personalized tabs exposing applicability. And deploy as a part of a package or an independent app.
Authors: Rafal Urniaz [aut, cre]
Maintainer: Rafal Urniaz <[email protected]>
License: GPL (>= 3)
Version: 1.1.3.11
Built: 2024-10-29 05:26:37 UTC
Source: https://github.com/cran/ShinyWizard

Help Index


Run ShinyWizard builder / project app

Description

Function executes ShinyWizard builder when file location is not provided or project app when project zip file location is provided.

Usage

RunShinyWizard(loc = NULL, devMode = FALSE)

Arguments

loc

file path to app file (*.zip), when NULL runs builder

devMode

when TRUE the developer mode is used. It means all tasks run by separate background jobs and the console is not blocked. It works by R Studio API so works only with R studio. It is mode only for development facilitate. Should not be used for production when compatibility with pure R is required.

Value

No return value, executes R shiny app

Examples

# Run to execute ShinyWizard builder
  RunShinyWizard()

# Run to execute saved project as zip file
  RunShinyWizard("Path-to-project-file")