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
@suppress does not seem to work in a notebook either. See here:
using VegaLite
using Suppressor
@suppressbegin
α =rand(10,2)
β =rand(10,2)
v1 =@vlplot(:circle,x=α[:,1],y=α[:,2])
v2 =@vlplot(mark={"type"=:circle,color="red"},x=β[:,1],y=β[:,2])
@vlplot()+v1+v2
end
@capture_out println(1)
appears to hang forever in a Jupyter notebook cell.The text was updated successfully, but these errors were encountered: