productionlog_sample | R Documentation |
A sample of the production data of the Junglivet whisky
data(productionlog_sample)
A data.frame with 21 rows and 8 variables:
day of the production
month of the production
name of the leading brew master)
product type like Junglivet or Junglivet premium
indicates morning or evening shift)
color indicator on a scale between 0 and 1
origin of the used malting products
quality indicator based on a whisky tasting
data(productionlog_sample)
library("ggplot2")
ggplot(productionlog_sample, aes(x=MANUFACTURER, y=TASTING, fill=TASTING)) +
geom_bar(stat="identity") +
coord_flip() +
xlab("")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.