How can I share an object between processes?
Say I make
import matplotlib.pyplot as plt
fig = plt.figure()
ax=fig.add_subplot(111)
ax.scatter(x,y)
I want this ax to be shared so that all processes makes plot referring to the same ax (same memory address). So that when I save the figure all plots created by all processes are superimposed in one .png window.