forgot to add title to graphs
This commit is contained in:
parent
7f5f410fd8
commit
d0f20b74e8
|
@ -263,6 +263,9 @@ def get_freq(song_name, offset, step, songlen, data):
|
|||
if(True):
|
||||
plt.plot([t/1000 for t in range(len(data))], frequencies)
|
||||
plt.grid()
|
||||
plt.xlabel("Time (s)")
|
||||
plt.ylabel("Dominant frequency (Hz)")
|
||||
plt.title("Dominant frequencies at peaks")
|
||||
plt.show()
|
||||
|
||||
return frequencies
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue