Reputation: 5552
I need to launch iPython QT console from the Editor window on Anaconda. But I really dislike how it displays the dataframes with this weird border (Pic #1):
How can I make it look normal, like this (Pic #2):
System Information:
Upvotes: 2
Views: 871
Reputation: 5659
You can turn off the pretty-printing that is the default by the following:
import pandas as pd
pd.set_option('display.notebook_repr_html', False)
To make it permanent you can make the modifications in your IPython config files, though where exactly I'm not sure.
Upvotes: 4