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!
Это упражнение является частью курса
Interactive Data Visualization with plotly in R
Инструкции к упражнению
- Change the plotting symbol to a diamond and decrease its size to 4.
Интерактивное практическое упражнение
Попробуйте выполнить это упражнение, дополнив этот пример кода.
# Set the plotting symbol to diamond and the size to 4
plot_ly(data = vg2016, x = ~User_Score, y = ~Critic_Score) %>%
___(___ = ___(___ = ___, ____ = ___))