Adding to hoverinfo
During the video lesson, you learned how to fully customize the hover info displayed by plotly. This is a great approach, but what if you only want to quickly add an identifying column rather than polish your chart for publication on the web? This is possible by adding the text argument to the plot_ly() command without specifying hoverinfo = "text".
plotly has already been loaded for you.
Diese Übung ist Teil des Kurses
Interactive Data Visualization with plotly in R
Anleitung zur Übung
- Create a scatterplot of user score (
User_Score) on the y-axis against critic score (Critic_Score) on the x-axis for video games sold in 2016. - Map the name of a video game (
Name) to the text argument in theplot_ly()layer to add it to the hover info.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Create a scatterplot of User_Score vs. Critic score
vgsales2016 %>%
# Add video game Name to the hover info text
___ %>%
___