Boxplot and Violin series recipes

Source code Author Update time

using Plots
gr()
using StatsPlots, RDatasets
singers = RDatasets.dataset("lattice", "singer")
@df singers violin(:VoicePart, :Height, line = 0, fill = (0.2, :blue))
@df singers boxplot!(:VoicePart, :Height, line = (2, :black), fill = (0.3, :orange))

This page was generated using DemoCards.jl and Literate.jl.