Can't Show Animation For Bar Graph In Matplotlib
I have a text file that is constantly updating a single value. I'm trying to display this value using matplotlib's animation but I'm having lots of issues. For example I want to sh
Solution 1:
Just had to change depth_1 = lines[3] to this depth_1 = int(lines[3])
Post a Comment for "Can't Show Animation For Bar Graph In Matplotlib"