You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using JuliaStudio to do some plotting and trying to draw vlines along side my data. Today is the first time I've used Julia so I'm not familiar with any of this, but so far I'm loving Gadfly.
Here is the code that is giving me trouble:
# Each df_* variable is a DataFrame
df =vcat(df_ddr, df_ddr_ema,
df_dmr, df_dmr_ema,
df_pdr, df_pdr_ema,
df_pmr, df_pmr_ema)
p =plot(df, x="time", y="rssi", color="label", xintercept=[4, 6], Geom.vline, Geom.line)
draw(PNG("plot.png", 1600px, 1200px), p) # line 83
I'm using JuliaStudio to do some plotting and trying to draw vlines along side my data. Today is the first time I've used Julia so I'm not familiar with any of this, but so far I'm loving Gadfly.
Here is the code that is giving me trouble:
And the error:
It works fine without the
Geom.vline
argument.Any suggestions as to what is going on would be really helpful. Thanks!
The text was updated successfully, but these errors were encountered: