Rating vs. cocoa percentages
Scatter plots are great for visualizing relationships between two numerical variables. Let's see if there is any relationship between chocolate ratings and cocoa percentages. After all, you need to choose the best chocolate bar possible!
The chocolates
dataset and the DataFrames
and Plots
packages have been loaded for you.
Cet exercice fait partie du cours
Data Manipulation in Julia
Instructions
- Create a scatter plot of
cocoa
vs.rating
columns. - Add a title
"Cocoa percentage vs. rating"
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Make a scatter plot of cocoa vs. ratings
____(____, ____)
# Add title
____!(____)