Skip to content
Advertisement

How to update a histogram when a slider is used?

I want to build a histogram for the normal distribution and update the plot when the mean, standard deviation and sample size are changed; analogue to the post here.

However, I struggle with the update function. In the example above

JavaScript

and

JavaScript

are used but how would this have to be changed when a histogram is plotted? So, I am not sure how to use the return values from plt.hist, pass them properly to update and then update the plot accordingly. Could anyone explain this?

This is my code:

JavaScript

Advertisement

Answer

One option is to clear the axis and just replot the histogram. The other option, more in the spirit of l.set_value approach of the matplotlib slider example would be to generate the histogram data with numpy, use a bar chart and update this using bar.set_height and bar.set_x with a rescale on the axis. The complete example is then:

JavaScript

UPDATE:

Version using clear axis (ax.cla()) and redraw ax.hist(...),

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