asigalov61 commited on
Commit
4e5a4ab
·
verified ·
1 Parent(s): 752fcc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -95,7 +95,7 @@ def plot_ms_SONG(ms_song,
95
  spcva = [((value - min_val) / (max(max_val - min_val, 0.00001))) * 100 for value in plot_curve_values]
96
 
97
  x = stimes
98
- x_smooth = np.linspace(x.min(), x.max(), 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')
 
95
  spcva = [((value - min_val) / (max(max_val - min_val, 0.00001))) * 100 for value in plot_curve_values]
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')