Created
May 1, 2023 21:07
-
-
Save polarities/4ee4ce290c505adc84835302266b7f21 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 matplotlib as mpl | |
multiplier = 1.4 | |
mpl.rcParams.update({ | |
"figure.subplot.left": 0.177, | |
"figure.subplot.right": 0.946, | |
"figure.subplot.bottom": 0.156, | |
"figure.subplot.top": 0.965, | |
"figure.facecolor": 'white', | |
"figure.edgecolor": 'white', | |
"xtick.major.size": 7 * multiplier, | |
"xtick.minor.size": 3.5 * multiplier, | |
"xtick.major.width": 1.1 * multiplier, | |
"xtick.minor.width": 1.1 * multiplier, | |
"xtick.major.pad": 5 * multiplier, | |
"xtick.minor.visible": True, | |
"ytick.major.size": 7 * multiplier, | |
"ytick.minor.size": 3.5 * multiplier, | |
"ytick.major.width": 1.1 * multiplier, | |
"ytick.minor.width": 1.1 * multiplier, | |
"ytick.major.pad": 5 * multiplier, | |
"ytick.minor.visible": True, | |
"lines.markersize": 10, | |
"lines.markeredgewidth": 0.8, | |
"axes.titlesize": 25 * multiplier, | |
"axes.titlepad": 20, | |
"axes.titleweight": "bold", | |
"axes.labelsize": 25 * multiplier, | |
"axes.facecolor": 'white', | |
'axes.linewidth': 1.1 * multiplier, | |
'axes.labelpad': 5.0 * multiplier, | |
'axes.formatter.useoffset': False, | |
"xtick.labelsize": 19 * multiplier, | |
"ytick.labelsize": 19 * multiplier, | |
"font.family": 'sans-serif', | |
"font.sans-serif": 'Arial', | |
"legend.fontsize": 17 * multiplier, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment