Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. %matplotlib inline
  2.  
  3. import numpy as np
  4. from scipy import stats
  5. import matplotlib.pyplot as plt
  6. import matplotlib.font_manager
  7.  
  8. plt.rcParams["text.usetex"] = True
  9. plt.rcParams["mathtext.fontset"] = "cm"
  10. plt.rcParams["font.family"] = "serif"
  11.  
  12. plt.rcParams["figure.figsize"] = 6.3, 4.2
  13. # plt.rcParams["figure.autolayout"] = True
  14.  
  15. plt.rcParams["font.size"] = 12
  16. plt.rcParams["axes.labelsize"] = 12
  17. plt.rcParams["axes.titlesize"] = 12
  18. plt.rcParams["xtick.labelsize"] = 10
  19. plt.rcParams["ytick.labelsize"] = 10
  20.  
  21. plt.rcParams["axes.linewidth"] = 0.4
  22. plt.rcParams["xtick.major.width"] = 0.4
  23. plt.rcParams["xtick.minor.width"] = 0.4
  24. plt.rcParams["ytick.major.width"] = 0.4
  25. plt.rcParams["ytick.minor.width"] = 0.4
  26. plt.rcParams["grid.linewidth"] = 0.4
  27. plt.rcParams["lines.linewidth"] = 0.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement