ggdash: Create shiny dashboard for the copied ggplot scripts

View source: R/ggplot.R

ggdashR Documentation

Create shiny dashboard for the copied ggplot scripts

Description

Any preceding lines that are necessary for the ggplot must be followed by five # sign, i.e. #####, for the program to distinguish which part is make condition, which is ggplot code.

Usage

ggdash()

Examples

# copy the following lines then run the function.
library(ggplot2) # not require if ggplot2 is the only library you need
#####
ggplot(mtcars, aes(x = mpg)) +
geom_dotplot(
  binwidth = 1.5, #input$binwidth
  fill = "white", #input$fill
  stroke = 2 #input$stroke
  )


tpemartin/econDV2 documentation built on Aug. 6, 2023, 11:46 p.m.