ComeçarComece de graça

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!

Este exercício faz parte do curso

Interactive Data Visualization with plotly in R

Ver curso

Instruções do exercício

  • Change the plotting symbol to a diamond and decrease its size to 4.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Set the plotting symbol to diamond and the size to 4
plot_ly(data = vg2016, x = ~User_Score, y = ~Critic_Score) %>% 
	___(___ = ___(___ = ___, ____ = ___)) 
Editar e executar o código