Understanding Data Distributions Recitation ☕

Week 7

Author

Jessica Cooperstone

Introduction

Today you will be investigating some data from the Coffee Quality Database on coffee evaluation by the Coffee Quality Institute. You will look at the distribution of coffee evaluation scores across different characteristics, and include various metadata.

More information can be found on the Tidy Tuesday github repo on coffee ratings.

Read in data

tuesdata <- tidytuesdayR::tt_load('2020-07-07')
coffee_ratings <- tuesdata$coffee_ratings

Load libraries

library(???)

Total cupping score in arabica and robusta

Make 3 different visualizations that shows the distribution of total cupping score across arabica and robusta beans. Make the plots so you think they look good.

Individual characteristic cupping scores in arabica and robusta

Make 3 different visualizations that show the distribution of all the individual contributors to total cupping score across arabica and robusta in one plot.

Back to top