IDNLearn.com: Your destination for reliable and timely answers to any question. Join our interactive community and get comprehensive, reliable answers to all your questions.
Question 4
Which code snippet will make all of the bars in the plot purple?
1 point
ggplot(data = buildings) +
geom_bar(mapping = aes(x = construction_year), color=”purple”)
ggplot(data = buildings) +
geom_bar(mapping = aes(x = construction_year, color=”purple”))
ggplot(data = buildings) +
geom_bar(mapping = aes(x = construction_year, color=height))
ggplot(data = buildings) +
geom_bar(mapping = aes(x = construction_year)) +
color(“purple”)
