Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # for Python 2 compability
  2. from __future__ import division, print_function
  3. %matplotlib inline
  4. import pandas as pd
  5. import numpy as np
  6.  
  7. import matplotlib.pyplot as plt
  8. import matplotlib as mpl
  9. import seaborn as sns
  10.  
  11. # disable Anaconda warnings
  12. import warnings
  13. warnings.filterwarnings('ignore')
  14.  
  15. # plots params
  16. mpl.rcParams['figure.figsize'] = (15, 8)
  17. mpl.rcParams['font.size'] = 14
  18. mpl.rcParams['axes.labelsize'] = 14
  19. mpl.rcParams['xtick.labelsize'] = 14
  20. mpl.rcParams['ytick.labelsize'] = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement