Created
July 18, 2018 14:36
-
-
Save AntonOsika/53a745e19cfc3bfe8f7733da64f79aac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import seaborn as sns | |
import matplotlib | |
pd.options.display.float_format = '{:,.2f}'.format | |
pd.options.display.max_columns = 999 | |
pd.options.display.max_colwidth = 150 | |
sns.set_style("whitegrid") | |
matplotlib.style.use('seaborn-dark-palette') | |
font = {'family' : 'normal', | |
'weight' : 'normal', | |
'size' : 16} | |
matplotlib.rc('font', **font) | |
# ... plot ... | |
plt.box(False) | |
plt.grid(False) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment