hello R community,
i am making line plot with tooltip, but it couldn't show up
wsdm_for_registration_plotly <- wsdm_for_registration %>%
head(14) %>%
ggplot( aes(x=year_registration, y=`number of subscriber`,text=paste0("years :" ,year_registration,"<br>",
"number of subscriber: ", scales::comma(`number of subscriber`, 1)))) +
geom_line() +
geom_point(color="#69b3a2", size=4) +
scale_y_continuous(labels = scales::comma) +
ggtitle("Subscriber Growth year to year") +
ylab("number of subscriber") +
theme_ipsum()`Preformatted text`
thank you