A Julia package for generating visualizations in Vega
Getting Started
Visualization Primitives
Creating A Visualization From Scratch
Function Keywords:
y::AbstractVector
group::AbstractVector
This function calculates a Tukey boxplot, where the whiskers are the min(max) of 1.5 * IQR or the smallest(largest) datapoint. The circles on the boxplot represent the most extreme values in the data. Currently, printing outliers on the boxplot is not implemented.
using RDatasets, Vega
df = dataset("datasets", "mtcars")
boxplot(y = df[:MPG])
using RDatasets, Vega
df = dataset("datasets", "mtcars")
boxplot(y = df[:MPG], group = df[:Cyl])