Skip to content

Instantly share code, notes, and snippets.

@AntonOsika
Created July 18, 2018 14:36
Show Gist options
  • Save AntonOsika/53a745e19cfc3bfe8f7733da64f79aac to your computer and use it in GitHub Desktop.
Save AntonOsika/53a745e19cfc3bfe8f7733da64f79aac to your computer and use it in GitHub Desktop.
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