You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scoring/performance_profile.py
+30-24Lines changed: 30 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -70,28 +70,35 @@
70
70
71
71
#MPL params
72
72
mpl.rcParams['figure.figsize'] = (16, 10) # Width, height in inches
73
-
mpl.rcParams['font.family'] ='serif'
74
-
mpl.rcParams['font.serif'] = ['Times New Roman'] +mpl.rcParams['font.serif'] # Add Times New Roman as first choice
73
+
mpl.rcParams['font.family'] ='serif'
74
+
mpl.rcParams['font.serif'] = [
75
+
'Times New Roman'
76
+
] +mpl.rcParams['font.serif'] # Add Times New Roman as first choice
75
77
mpl.rcParams['font.size'] =22
76
78
mpl.rcParams['savefig.dpi'] =300# Set resolution for saved figures
77
79
78
80
# Plot Elements
79
-
mpl.rcParams['lines.linewidth'] =3# Adjust line thickness if needed
80
-
mpl.rcParams['lines.markersize'] =6# Adjust marker size if needed
81
-
mpl.rcParams['axes.prop_cycle'] =mpl.cycler(color=["#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd"]) # Example color cycle (consider ColorBrewer or viridis)
82
-
mpl.rcParams['axes.labelsize'] =22# Axis label font size
83
-
mpl.rcParams['xtick.labelsize'] =20# Tick label font size
81
+
mpl.rcParams['lines.linewidth'] =3# Adjust line thickness if needed
82
+
mpl.rcParams['lines.markersize'] =6# Adjust marker size if needed
0 commit comments