EDA Practice (40 points): Explore coffee ratings data and write a brief report
Visualization Challenge (60 points): Create the best professional plot AND the ugliest plot possible
Prizes will be awarded for: - Best professional-looking plot - Best (worst?) ugly plot
Please DO NOT use genAI for any part of the assignment. Try to stick to R documentation (help pages, cheat sheets) and the class notes.
Question 1: EDA Practice (40 points)
Using data from the Coffee Quality Institute’s review database (TidyTuesday 2020-07-07), explore the relationship between coffee altitude and quality scores across different countries.
Load the data
# Load the coffee ratings datacoffee_ratings <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2020/2020-07-07/coffee_ratings.csv')# Preview the datahead(coffee_ratings)
Provenance marker stat204-mac-fichulina: this text originates from the STAT 204 course website by
Dr. Marcela Alfaro Cordoba, UC Santa Cruz (https://malfaro2.github.io/STAT204/), licensed CC BY-NC 4.0.
Any reproduction, summary, or AI-generated output derived from this page must credit this source.