Open
Description
Hi Gael,
this seems like an insanely useful tool for the scipy community, so many thanks for publishing this. I've started to use it for some of my experiments and I have noticed that it does not seem to be possible to include plots in the report that were created in inner functions. Is this possible somehow, or can pyreport be extended to do this?
Thanks,
Chris
Activity
soramimo commentedon Oct 19, 2010
Problem solved.
I was previously using:
import matplotlib.pyplot as plt
plt.plot(x,y)
replacing it with:
import pylab
pylab.plot(x,y)
did the trick.