Custom hoverinfo
In this exercise your task is to customize the hover info to help explore the relationship between North American video game sales and European video game sales in 2016.
Once you have created the chart and the custom hover info, try to identify the video games with the greatest discrepancy between the North American and European sales.
Note that plotly
has already been loaded for you.
Cet exercice fait partie du cours
Interactive Data Visualization with plotly in R
Instructions
- Customize the hover info
text
to include the name and value for each of the following variables (in the specified order):NA_Sales
,EU_Sales
, andName
. - Separate the name and the value with a colon. For example, the first line should be of the form:
NA_Sales: 41.4
.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Format the hover info for NA_Sales, EU_Sales, and Name
vgsales2016 %>%
plot_ly(x = ~NA_Sales, y = ~EU_Sales,
hoverinfo = ___,
text = ___(___, ___, ___,
___, ___, ___,
___, ___)
) %>%
add_markers()