chartist icon indicating copy to clipboard operation
chartist copied to clipboard

Chartist.js for R, powered by htmlwidgets

Chartist.js for R, powered by htmlwidgets

chartist is an R package to draw charts by Chartist.js via htmlwidgets interface.

Installation

devtools::install_github("yutannihilation/chartist")

Example

set.seed(324)
data <- data.frame(
  day = paste0("day", 1:10),
  A   = runif(10, 0, 10),
  B   = runif(10, 0, 10),
  C   = runif(10, 0, 10)
)

# NSE version
chartist(data, day)

demo1