Question: 31 pts What is wrong with this code to draw a map of California and its cities? ggplot(data = ca_cities, aes(x = long, y =
31 pts What is wrong with this code to draw a map of California and its cities? ggplot(data = ca_cities, aes(x = long, y = lat)) + geom_polygon(fill = "white", color = "black") + geom_point(alpha = population) + coord_quickmap() Group of answer choices geom_point() should have its own x and y values the alpha paremeter is set in geom_point() it uses coord_quickmap() the fill parameter is set in geom_polygon()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
