README.md

universe

Plotly-powered univariates. Runs on R6 and data.table. Very much a work in progress.

Bucket data and draw univariate plots in plotly. Univariate plots show the variation of one or more variables versus one covariate. Also draws a neat exposure histogram.

Things that don't work (non exhaustive)

  1. ~~Factors~~
  2. Weights
  3. ~~Axis labels~~

How to install

# install.packages("devtools")
devtools::install_github("DexGroves/universe")

How to plot

library("ggplot2")
library("universe")

data(diamonds)

diamonds %>%
  universe(plot_cols = c("x", "y", "z"),
           by_col = "price",
           buckets = 20,
           cut_type = "quantile",
           scale = "cartesian")

Produces this chart

How to plot with ggplot

diamonds %>%
  universe(plot_cols = c("x", "y", "z"),
           by_col = "price",
           buckets = 20,
           cut_type = "quantile",
           scale = "cartesian",
           backend = "ggplot2")

And get this:

plot



DexGroves/universe documentation built on May 6, 2019, 2:13 p.m.