Internal undocumentation functions
1 2 3 4 5 6 7 | library(ggplot2)
# This example uses the ChickWeight dataset, which comes with ggplot2
# http://www.cookbook-r.com/Graphs/Multiple_graphs_on_one_page_%28ggplot2%29/
p1 <- ggplot(ChickWeight, aes(x=Time, y=weight, colour=Diet, group=Chick)) + geom_line() + ggtitle("Growth curve for individual chicks")
multiplot(p1, p1, cols=1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.