johnmyleswhite / Vega.jl

A Julia package for generating visualizations in Vega
Other
84 stars 22 forks source link

how to multiple plots? #140

Closed jmarcellopereira closed 8 years ago

jmarcellopereira commented 8 years ago

how to multiple plots? using Vega

x = 1:100 y = sin(x).*x g = x.^2 lineplot(x = x,y = y and ?????)

randyzwitch commented 8 years ago

Currently, layering of plots doesn't work. To have multiple series, you can use the group parameter of many visualizations:

http://johnmyleswhite.github.io/Vega.jl/lineplot.html

randyzwitch commented 8 years ago

Related #142

randyzwitch commented 8 years ago

142 makes progress towards layering. Will open a meta issue for outstanding layer topics.