Skip to content
Advertisement

Having problems labelling axes in a barplot animation shown on a FigureCanvas

I’ve been using the animation method outlined at Managing dynamic plotting in matplotlib Animation module to create animations and place them on a tkinter FigureCanvas.

I’m having difficulties animating a sequence of barplots in such a way that the y-axis tickmark labels appear as I want them to. My animation will have 100 frames, each consisting of a barplot using four x-values. The data is stored in a 100-by-4 matrix, whose entries are random and fall between zero and one. Each frame of the animation appears on a FigureCanvas. Below is a summary of what I’ve done so far, where Player is the class defined at the link above.

JavaScript

When I play the animation, the y-axis labels turn out to be a mess, because the tick marks are recreated in each frame. (See image, which shows the eighth frame.)

Is there a way for me to set the y-tickmark label at all at once before the animation starts? enter image description here

Advertisement

Answer

You should move the line:

JavaScript

out of update_bar function: you don’t need a new ax in each iteration.
Then, within update_bar function you should add this line:

JavaScript

in order to erase the previous plot.
Finally, I suggest to add this line:

JavaScript

in the update_bar function, in order to keep fixed y axis limits.

Complete Code

JavaScript

enter image description here

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement