Manual faceting
Recall that the subplot() command allows you to combine charts to create facets (i.e. subplots or small multiples). This is a great way to explore distributions and relationships across factors. In this exercise, you will explore how the relationship between critic score and user score changes (or stays the same) across platform.
Note that plotly and dplyr have already been loaded for you.
Este ejercicio forma parte del curso
Interactive Data Visualization with plotly in R
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create a scatterplot of User_Score against Critic_Score for PS4 games
p1 <- vgsales2016 %>%
___(Platform ___) %>%
plot_ly(___, ___) %>%
___(name = ___)