Question: How would you color the points in this scatter plot by the values of a third categorical variable, column_cat ? ggplot(data = example_df) + geom_point(mapping

How would you color the points in this scatter plot by the values of a third categorical variable, column_cat?

ggplot(data = example_df) +
 geom_point(mapping = aes(x = column1, y = column2))
a. ggplot(data = example_df) +
 geom_point(mapping = aes(x = column1, y = column2, color = red))

b. ggplot(data = example_df) +
 geom_point(mapping = aes(x = column1, y = column2, fill = column_cat))

c. ggplot(data = example_df) +
 geom_point(mapping = aes(x = column1, y = column2), fill = column_cat)
d. ggplot(data = example_df) +
 geom_point(mapping = aes(x = column1, y = column2, color = column_cat))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!