summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-09-10 19:06:19 +0200
committerJohn Glover <j@johnglover.net>2012-09-10 19:06:19 +0200
commit386fd1d34f78030b0520497dcf2f295a5d64caac (patch)
tree47a7ab9fcb9abf18b5c24e5ee507a03ca3bc6268
parent13a0e0dc0e7504a836c12d888835e23e9cbc747d (diff)
downloadsimpl-386fd1d34f78030b0520497dcf2f295a5d64caac.tar.gz
simpl-386fd1d34f78030b0520497dcf2f295a5d64caac.tar.bz2
simpl-386fd1d34f78030b0520497dcf2f295a5d64caac.zip
[plot] Change default behaviour for plot_partials
so that peaks are not shown.
-rw-r--r--simpl/plot/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpl/plot/__init__.py b/simpl/plot/__init__.py
index dd6ffe7..375c50b 100644
--- a/simpl/plot/__init__.py
+++ b/simpl/plot/__init__.py
@@ -22,7 +22,7 @@ def plot_peaks(frames):
markerfacecolor=colours.pbj(peak.amplitude / max_amp))
-def plot_partials(frames, show_peaks=True):
+def plot_partials(frames, show_peaks=False):
"Plot partials created by a partial tracking algorithm"
# Get the maximum peak amplitude, used to select an appropriate
# colour for each peak.