If I plot two sets of points from the repl with:

using PyPlot
fig = figure(figsize=(5,5))
p1=plot(x1[1,:],x1[2,:],color="b",marker="+");
p2=plot(x2[1,:],x2[2,:],color="r",marker="o");

the Julia window plot correctly shows both sets of points,
but if I do the same in IJulia, only the second set (p2)
is displayed.

Is there some way of getting both sets plotted on one plot in IJulia?

(I'm on OSX 10.8 and 4-day old Julia master with updated packages. All else
seems to be working fine).

Thanks, Adrian.

Reply via email to