blockr is a framework to build data analyses and dashboards in minutes, click by click.
It is composed of a set of R packages which share a common API and design. This blockr package is a meta-package which bundles many of these lower-level packages, making it easy to install and load the framework in a few simple commands.
To learn more about blockr:
- Read the docs.
- Visit the YouTube channel.
You can install the development version of blockr from GitHub with
# install.packages("pak")
pak::pak("BristolMyersSquibb/blockr")or released versions via CRAN as
install.packages("blockr")This will install several blockr packages, including blockr.core, blockr.dag, blockr.dock, blockr.dplyr, blockr.ggplot, and blockr.io.
library(blockr)
run_app(
blocks = c(
a = new_dataset_block("iris")
)
)