Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 498 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 498 Bytes

blockr.ggplot2

Set of ggplot2 blocks for blockr.

Installation

# install.packages("remotes")
remotes::install_github("blockr-org/blockr.ggplot2")

Example

library(blockr)
library(blockr.ggplot2)

stack <- new_stack(
    new_dataset_block(selected = "BOD"),
    new_ggplot_block(func = c("x", "y"), default_columns = c("Time", "demand")),
    new_geompoint_block
)

serve_stack(stack)