I am trying to utilize some of the functionality that pyplot provides to
display some data related to the graph, but on a separate window. 

The problem I have is that the pyplot window that pops up is uncontrollable,
in other words I can not utilize any of the default buttons, or even close
it. 

The code I use is very simple:
        plt.ion()
        fig = plt.figure()
        ax = self.fig.add_subplot(111)
        x = np.random.normal(0,1,1000)
        numBins = 50
        ax.hist(x,numBins,color='green',alpha=0.8)

Any ideas what is going on? Can it be that Gtk and pyplot don't work well
together?

thanks in advance



--
View this message in context: 
http://main-discussion-list-for-the-graph-tool-project.982480.n3.nabble.com/graph-tool-and-pyplot-tp4026346.html
Sent from the Main discussion list for the graph-tool project mailing list 
archive at Nabble.com.
_______________________________________________
graph-tool mailing list
[email protected]
http://lists.skewed.de/mailman/listinfo/graph-tool

Reply via email to