Size and symbol
To change the default size and shape of points on a scatterplot or boxplot, we pass the marker
argument a list with the size
and symbol
arguments. As you have seen, changing the plotting symbol can make charts easier to read by addressing issues such as overplotting. Decreasing the size of points can also help overcome minor overplotting issues—just don't make the points hard to see!
Cet exercice fait partie du cours
Interactive Data Visualization with plotly in R
Instructions
- Change the plotting symbol to a diamond and decrease its size to 4.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Set the plotting symbol to diamond and the size to 4
plot_ly(data = vg2016, x = ~User_Score, y = ~Critic_Score) %>%
___(___ = ___(___ = ___, ____ = ___))