I am trying to plot some data using pandas in Ipython Notebook, and while it gives me the object, it doesn\'t actually plot the graph itself. So it looks like this:
Edit:Pylab has been deprecated please see the current accepted answer
Ok, It seems the answer is to start ipython notebook with --pylab=inline.
so ipython notebook --pylab=inline
This has it do what I saw earlier and what I wanted it to do.
Sorry about the vague original question.