Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -96,7 +96,7 @@ def plot_ms_SONG(ms_song,
|
|
96 |
|
97 |
x = stimes
|
98 |
x_smooth = np.linspace(min(x), max(x), 300)
|
99 |
-
spl = make_interp_spline(x, spcva, k=
|
100 |
y_smooth = spl(x_smooth)
|
101 |
ax.plot(x_smooth, y_smooth, color='white')
|
102 |
|
|
|
96 |
|
97 |
x = stimes
|
98 |
x_smooth = np.linspace(min(x), max(x), 300)
|
99 |
+
spl = make_interp_spline(x, spcva, k=3)
|
100 |
y_smooth = spl(x_smooth)
|
101 |
ax.plot(x_smooth, y_smooth, color='white')
|
102 |
|