Skip to content

Commit 3de151f

Browse files
committed
fix: change plots' font to Inter Tight
1 parent 0a99cf2 commit 3de151f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/viz.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
import matplotlib.pyplot as plt
1010
from scipy.interpolate import RBFInterpolator
1111

12+
plt.rcParams['font.family'] = 'sans-serif'
13+
plt.rcParams['font.sans-serif'] = 'Inter Tight'
1214

1315
# -----------------------------------------------------------------------------
1416
# Helper utilities copied from the notebook
@@ -30,9 +32,6 @@ def _parse(vstr):
3032
# Plotting functions
3133
# -----------------------------------------------------------------------------
3234

33-
34-
35-
3635
def plot_performance(
3736
unique_started: pd.DataFrame,
3837
unique_success: pd.DataFrame,

0 commit comments

Comments
 (0)