Skip to content
Prev 363114 / 398502 Next

plot many dfs in ggplot

Not quite - this works: rbind(df1, df2, df3, df1, df2, df3)

Or if the have your data.frames in a list, use do.call:

df.lst <- list(df1, df2, df3, df1, df2, df3)
do.call(rbind, df.lst)

You might take a look at the facet functionality in ggplot once you are
ready to build your plots.

Best,
Ulrik
On Wed, 3 Aug 2016 at 17:42 lily li <chocold12 at gmail.com> wrote: