I have a question, not sure if this is difficult or not, but I tried to answer Google. nothing worthy.
I have a global figure that can be accessed in all threads.
but he appears at the beginning of the program,
I want to hide or make it invisible when I run the script, and then at some point in the code make it accessible or visible.
Is there any matplotlib as visible False or something
i use this:
plt.ion()
fig = plt.figure(visible=False)
ax =fig.add_subplot(111)
Thanks in advance
Hasan source
share