I've just started with Julia and Juno but have extensive knowledge in other data analysis frameworks.
While working with Julia in Juno trying to plot some graphs and combinations of graphs with Gadfly, I've stumbled over the following:
fig1 = plot(df, x=:time, y=:pressure, Geom.line)
fig2 = plot(df, x=:time, y=:temperature, Geom.line)
create graphs in the plot pane as expected.
On the other hand, the result of
fig3 = vstack(fig1, fig2)
does not show up in the plot pane.
I've tried calling fig3
and show(fig3)
but those just return the Compose.Context
object on the shell.
Am I missing something?