Guest User

Untitled

a guest
Jul 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import pandas as pd
  2. import seaborn as sns
  3. import matplotlib
  4.  
  5. pd.options.display.float_format = '{:,.2f}'.format
  6. pd.options.display.max_columns = 999
  7. pd.options.display.max_colwidth = 150
  8.  
  9. sns.set_style("whitegrid")
  10.  
  11. matplotlib.style.use('seaborn-dark-palette')
  12.  
  13. font = {'family' : 'normal',
  14. 'weight' : 'normal',
  15. 'size' : 16}
  16.  
  17. matplotlib.rc('font', **font)
  18.  
  19. # ... plot ...
  20.  
  21. plt.box(False)
  22. plt.grid(False)
Add Comment
Please, Sign In to add comment