When I use pandas in ipython notebook, I get nicely formatted table:
when I use pandas in ipython qtconsole, I get an ugly table with double line border, like this:
Where can I change the look of the table, displayed in ipython qtconsole ?
I would like to have simple table with single border
UPDATE:
I am using pandas version 0.8.0-2, and the suggested option pd.set_option('display.notebook_repr_html', False) does not exist there.
On another machine, I have tried upgrading to 0.14.1-2, but there the table has no border at all by default (the option pd.set_option('display.notebook_repr_html', False) exists, but has no effect, regardless whether I set it to False or True)

