Changeset 5f23f66 for python/aubio/bench
- Timestamp:
- Sep 26, 2009, 1:42:52 AM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 634d238
- Parents:
- 55ed67a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/bench/onset.py
r55ed67a r5f23f66 112 112 gd.append(i['GD']) 113 113 fp.append(i['FP']) 114 d.append(Gnuplot.Data(fp, gd, with ='linespoints',114 d.append(Gnuplot.Data(fp, gd, with_='linespoints', 115 115 title="%s %s" % (plottitle,i['mode']) )) 116 116 … … 148 148 x.append(i['prec']) 149 149 y.append(i['recl']) 150 d.append(Gnuplot.Data(x, y, with ='linespoints',150 d.append(Gnuplot.Data(x, y, with_='linespoints', 151 151 title="%s %s" % (plottitle,i['mode']) )) 152 152 … … 173 173 x.append(i['thres']) 174 174 y.append(i['dist']) 175 d.append(Gnuplot.Data(x, y, with ='linespoints',175 d.append(Gnuplot.Data(x, y, with_='linespoints', 176 176 title="%s %s" % (plottitle,i['mode']) )) 177 177 … … 206 206 x.append(i[var]) 207 207 y.append(i['dist']) 208 d.append(Gnuplot.Data(x, y, with ='linespoints',208 d.append(Gnuplot.Data(x, y, with_='linespoints', 209 209 title="%s %s" % (plottitle,i['mode']) )) 210 210 … … 245 245 for i in range(len(per)): per[i] /= total/100. 246 246 247 d.append(Gnuplot.Data(val, per, with ='fsteps',247 d.append(Gnuplot.Data(val, per, with_='fsteps', 248 248 title="%s %s" % (plottitle,v['mode']) )) 249 249 #d.append('mean=%f,sigma=%f,eps(x) title \"\"'% (mean,smean)) … … 276 276 for i in range(len(per)): per[i] /= total/100. 277 277 278 d.append(Gnuplot.Data(val, per, with ='fsteps',278 d.append(Gnuplot.Data(val, per, with_='fsteps', 279 279 title="%s %s" % (plottitle,v['mode']) )) 280 280 #d.append('mean=%f,sigma=%f,eps(x) title \"\"'% (mean,smean))
Note: See TracChangeset
for help on using the changeset viewer.