Hi,
I'm trying to populate an analysis with streamgraph on blogodown. However, I'm getting the below message indicating that the graphs won't populate.
Objects that have dep endencies (e.g. HTML widgets) do not work when the output format is Markdown instead of HTML.
What change should I implement in my code?
Data_set%>%
filter(Country %in% c("United States", "China", "Germany", "United Kingdom", "France", "Japan", "Netherlands",...)) %>%
streamgraph("Country","Exports","Year", interpolate="cardinal", interactive=TRUE)%>%
sg_fill_tableau(palette = "tableau20") %>%
sg_legend(show=TRUE, label="Country: ")%>%
sg_axis_x(tick_units = "Year", tick_interval= 2)%>%
sg_axis_y(0)
Thanks