[Matplotlib-users] RuntimeError: maximum recursion depth exceeded while calling a Python object
Hello everyone, Forget it, I was mistakenly passing a list of dictionaries to the pyplot function instead of passing a list of extracted values. Regards, mk -- This SF.net email is sponsored by: SourcForge Community S
[Matplotlib-users] RuntimeError: maximum recursion depth exceeded while calling a Python object
Hello everyone, It's fine when I plot in interactive Python shell like so: import matplotlib.pyplot as plt plt.plot(valist) plt.show() However, I get an exception like in subject when I call it from function: def plotit(origlist, valist): plt.plot(origlist) plt.plot(valist)