View Source Boxplot

Examples.mpg()
|> Plot.new(%{x: "class", y: "hwy"})
|> Plot.geom_boxplot()
|> Plot.plot()

Examples.mpg()
|> Plot.new(%{x: "class", y: "hwy"})
|> Plot.geom_boxplot(fill: "white", color: "#3366FF")
|> Plot.plot()

Examples.mpg()
|> Plot.new(%{x: "class", y: "hwy"})
|> Plot.geom_boxplot(outlier_color: "red")
|> Plot.plot()

Examples.mpg()
|> Plot.new(%{x: "class", y: "hwy"})
|> Plot.geom_boxplot(%{color: "drv"})
|> Plot.plot()