Q. In ggplot2, how do you add a color gradient to a scatter plot based on a numeric variable color_var?
β
Correct Answer: (C)
scale_color_gradient(low = "blue", high = "red")
You must be Logged in to update hint/solution