asigalov61 commited on
Commit
eeeb22e
·
verified ·
1 Parent(s): 9372e8e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=9)
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