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 am trying to save a figure with subplots, but the savefig function hangs. I can save a figure without subplots. I also found that the figure can be saved through the savefig function from PlotlyJS.
This is the minimal script to reproduce the problem. I haven't checked it with other backends.
using Plots
plotlyjs()
p1 = plot(rand(5), rand(5))
savefig("plotsave.svg")
p2 = plot(rand(5), rand(5))
p = plot(p1, p2)
PlotlyJS.savefig(p.o, "plotlyjs_test.svg")
savefig("subplotsave.svg")
I have same issue on savefig from Plots.
"PlotlyJS.savefig" helped me to save figure .eps on command line.
But I can't implement same code on Jupyter Notebook.
I am trying to save a figure with subplots, but the
savefig
function hangs. I can save a figure without subplots. I also found that the figure can be saved through thesavefig
function from PlotlyJS.This is the minimal script to reproduce the problem. I haven't checked it with other backends.
This is my environment.
The text was updated successfully, but these errors were encountered: