Removing duplicates from animation's lened of a 3d plot in python
I am exporting an animation in python but the legend is repeating. I have only one plot and want to have one single legend item in every frame of the animation. This is my script: import numpy as np import matplotlib.pyplot as plt from matplotlib import animation x = np.linspace(0., 10., 100) y = np.linspace(0.,… Read More Removing duplicates from animation's lened of a 3d plot in python