Travis build status

knitr::opts_chunk$set(echo = TRUE)

About

This R package consists of several shiny modules that return R code in the form of reactive characters. All those modules represent common operations regarding

Usage

Always save the output from callModule into a variable when working with modules from this package. The outputs can then be parsed as R code using eval(parse(text = code())) or evalCode.

## context: server.R
code <- callModule(libData, id = "some_id", assignTo = "dt")
output$table <- renderTable({
  evalCode(code())
})

Implemented Modules

Other functions



statistikat/codeModules documentation built on Feb. 17, 2021, 11:42 a.m.