plot_simple | R Documentation |
A simple plot all of the populations in a data frame against time. One column must be called "time" and will be used as the x-axis of the plot. The rest will be used as different lines on the y-axis, with a legend denoting their column names. See plot_populations() above for a more sophisticated plotting function.
plot_simple( populations, new.graph = TRUE, xlim, ylim, lty = 1, legend = "topright" )
populations |
Data frame with columns corresponding to different population segments and a 'time' column |
new.graph |
(optional) whether to start a new graph, default TRUE |
xlim |
(optional, for new graphs) the limits of the x axis, default min to max time |
ylim |
(optional, for new graphs) the limits of the y axis, default min to max pop size |
lty |
(optional) the line type for all lines on the graph, default 1 |
legend |
(optional) legend position; choose from "topleft", "top", "topright" (default), "left", "center", "right", "bottomleft", "bottom", or "bottomright" |
df <- data.frame(time = 0:100, grow = exp((0:100) / 10), die = exp(seq(10, 0, by = -0.1))) plot_simple(df, lty = c(2, 3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.