Your team has created some basic visualizations to explore different aspects of the chocolate bar data. You've volunteered to add titles to the plots. You begin with a scatterplot.
Assume the first part of your code chunk is:
ggplot (data = trimmed_flavors_df) +
geom_point (mapping = aes (x = Cocoa. Percent, y = Rating)) +
What code chunk do you add to the third line to add the title Recommended Bars to your plot?
a. labs (title = Recommended Bars)
b. labs ("Recommended Bars")
c. labs (title + "Recommended Bars")
d. labs (title = "Recommended Bars")