summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-08-11 12:11:47 +0100
committerJohn Glover <j@johnglover.net>2012-08-11 12:11:47 +0100
commit221b5408473cdcd10d0e77087bc82412b46895aa (patch)
treea9a2d12ba10d338ca8b9a326df14e7292396c161
parentdb190be6c52c1457237889bcc75cdec7dba43105 (diff)
downloadsimpl-221b5408473cdcd10d0e77087bc82412b46895aa.tar.gz
simpl-221b5408473cdcd10d0e77087bc82412b46895aa.tar.bz2
simpl-221b5408473cdcd10d0e77087bc82412b46895aa.zip
[examples] Don't show peaks in plotpartials example.
-rw-r--r--simpl/examples/plotpartials.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpl/examples/plotpartials.py b/simpl/examples/plotpartials.py
index ab71e18..8bce791 100644
--- a/simpl/examples/plotpartials.py
+++ b/simpl/examples/plotpartials.py
@@ -11,5 +11,5 @@ peaks = pd.find_peaks(audio)
pt = simpl.MQPartialTracking()
pt.max_partials = 60
partials = pt.find_partials(peaks)
-simpl.plot_partials(partials)
+simpl.plot_partials(partials, show_peaks=False)
plt.show()