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
So I was trying to export the Plots.PyPlot.matplotlib.rcParams dictionary to a JSON file so I could use that configuration in my Python code (since the default plots made by Plots.jl are quite nice looking), so I wrote the following to export it to a JSON file -
using JSON
using Plots
pyplot()
configs = Plots.PyPlot.matplotlib.rcParams
open("rcParams.json", "w") do f
JSON.print(f, configs)
end
However it throws this StackOverflow error
ERROR: LoadError: StackOverflowError:
in expression starting at /home/cocoa/Documents/DarkMatterProject/JuliaCode/main.jl:7
I'm unsure what the issue is here. It works fine for a test dictionary I made
So I was trying to export the Plots.PyPlot.matplotlib.rcParams dictionary to a JSON file so I could use that configuration in my Python code (since the default plots made by Plots.jl are quite nice looking), so I wrote the following to export it to a JSON file -
However it throws this StackOverflow error
I'm unsure what the issue is here. It works fine for a test dictionary I made
Perhaps some issue with the dictionary? Here is the full dictionary - https://paste.debian.net/1224856/
Appreciate your help!
The text was updated successfully, but these errors were encountered: