Projects/laydi
Projects
/
laydi
Archived
7
0
Fork 0

Fixed problem with plots accumulating.

This commit is contained in:
Truls Alexander Tangstad 2006-04-24 14:25:24 +00:00
parent 97e09b39a1
commit 3fb7d06f4e
1 changed files with 1 additions and 0 deletions

View File

@ -282,6 +282,7 @@ class ScatterPlot(Plot):
index = [ind for id,ind in self.dataset[self.current_dim].items() if id in ids] #conversion to index
xdata_new = scipy.take(self.xaxis_data,index) #take data
ydata_new = scipy.take(self.yaxis_data,index)
self.ax.clear()
self.ax.plot(self.xaxis_data,self.yaxis_data,'og')
self.ax.plot(xdata_new,ydata_new,'or')
self.canvas.draw()