library(DT)
source("plots.R")
Plots adapted from https://github.com/allisonhorst/palmerpenguins/blob/master/vignettes/examples.Rmd
This dataset has been proposed as an alternative to the widely used iris dataset. This is what it looks like.
DT::datatable(penguins)
penguin_boxplot("flipper_length_mm")
penguin_boxplot("body_mass_g")
penguin_scatter("flipper_length_mm", "body_mass_g")
penguin_scatter("bill_length_mm", "body_mass_g")