Nothing
library(ggplot2)
ggplot(airquality, aes(Day, Wind, group = Month)) +
stat_interquartilerange(geom = "ribbon",
show.legend = FALSE) +
geom_line() +
stat_sparklabels(geom = "label", label_fun = \(x) round(x, 0),
show.legend = FALSE) +
scale_colour_manual("", values = c("black", "blue", "red")) +
scale_y_continuous(limits = c(0, 25)) +
facet_grid(Month~.) +
ggtitle("Daily wind intensity by month in NYC") +
theme_minimal()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.