diff --git a/docs/build/doctrees/environment.pickle b/docs/build/doctrees/environment.pickle index bc1cf59..fa4705d 100644 Binary files a/docs/build/doctrees/environment.pickle and b/docs/build/doctrees/environment.pickle differ diff --git a/docs/build/doctrees/index_c4.doctree b/docs/build/doctrees/index_c4.doctree index 1bb6140..d7fa968 100644 Binary files a/docs/build/doctrees/index_c4.doctree and b/docs/build/doctrees/index_c4.doctree differ diff --git a/docs/build/html/.buildinfo b/docs/build/html/.buildinfo index c7afbdf..3a6f303 100644 --- a/docs/build/html/.buildinfo +++ b/docs/build/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: adf48a7236c968aeab2838fb6687ebb3 +config: 109ecb0bc54e565f7ee035de31fe8f07 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/build/html/_modules/index.html b/docs/build/html/_modules/index.html index 65723a1..f79fc94 100644 --- a/docs/build/html/_modules/index.html +++ b/docs/build/html/_modules/index.html @@ -7,7 +7,7 @@ -
kwargs['aspect'] = 'auto'
if 'origin' not in kwargs:
kwargs['origin'] = 'lower'
+ if 'interpolation' not in kwargs:
+ kwargs['interpolation'] = 'nearest'
im = ax[0].imshow(X, **kwargs)
diff --git a/docs/build/html/_modules/libfmp/c4/c4s2_ssm.html b/docs/build/html/_modules/libfmp/c4/c4s2_ssm.html
index d1b1304..b50a996 100644
--- a/docs/build/html/_modules/libfmp/c4/c4s2_ssm.html
+++ b/docs/build/html/_modules/libfmp/c4/c4s2_ssm.html
@@ -7,7 +7,7 @@
- libfmp.c4.c4s2_ssm — libfmp 1.1.2 documentation
+ libfmp.c4.c4s2_ssm — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.2
+ 1.2.0
@@ -288,7 +288,7 @@ Source code for libfmp.c4.c4s2_ssm
[docs]def subplot_matrix_colorbar(S, fig, ax, title='', Fs=1,
xlabel='Time (seconds)', ylabel='Time (seconds)',
- clim=None, xlim=None, ylim=None, cmap=None):
+ clim=None, xlim=None, ylim=None, cmap=None, interpolation='nearest'):
"""Visualization function for showing zoomed sections of matrices
Notebook: C4/C4S2_SSM-PathEnhancement.ipynb
@@ -305,6 +305,7 @@ Source code for libfmp.c4.c4s2_ssm
xlim: Limits for x-axis (Default value = None)
ylim: Limits for x-axis (Default value = None)
cmap: Colormap for imshow (Default value = None)
+ interpolation: Interpolation value for imshow (Default value = 'nearest')
Returns:
im: Imshow handle
@@ -313,7 +314,7 @@ Source code for libfmp.c4.c4s2_ssm
cmap = libfmp.b.compressed_gray_cmap(alpha=-100)
len_sec = S.shape[0] / Fs
extent = [0, len_sec, 0, len_sec]
- im = ax.imshow(S, aspect='auto', extent=extent, cmap=cmap, origin='lower')
+ im = ax.imshow(S, aspect='auto', extent=extent, cmap=cmap, origin='lower', interpolation=interpolation)
fig.sca(ax)
fig.colorbar(im)
ax.set_title(title)
@@ -469,7 +470,8 @@ Source code for libfmp.c4.c4s2_ssm
[docs]def subplot_matrix_ti_colorbar(S, fig, ax, title='', Fs=1, xlabel='Time (seconds)', ylabel='Time (seconds)',
- clim=None, xlim=None, ylim=None, cmap=None, alpha=1, ind_zero=False):
+ clim=None, xlim=None, ylim=None, cmap=None, alpha=1, interpolation='nearest',
+ ind_zero=False):
"""Visualization function for showing transposition index matrix
Notebook: C4/C4S2_SSM-TranspositionInvariance.ipynb
@@ -486,7 +488,8 @@ Source code for libfmp.c4.c4s2_ssm
xlim: Limits for x-axis (Default value = None)
ylim: Limits for y-axis (Default value = None)
cmap: Color map (Default value = None)
- alpha: Alpha value for imsow (Default value = 1)
+ alpha: Alpha value for imshow (Default value = 1)
+ interpolation: Interpolation value for imshow (Default value = 'nearest')
ind_zero: Use white (True) or black (False) color for index zero (Default value = False)
Returns:
@@ -504,7 +507,8 @@ Source code for libfmp.c4.c4s2_ssm
cmap = ListedColormap(colorList)
len_sec = S.shape[0] / Fs
extent = [0, len_sec, 0, len_sec]
- im = ax.imshow(S, aspect='auto', extent=extent, cmap=cmap, origin='lower', alpha=alpha)
+ im = ax.imshow(S, aspect='auto', extent=extent, cmap=cmap, origin='lower', alpha=alpha,
+ interpolation=interpolation)
if clim is None:
im.set_clim(vmin=-0.5, vmax=11.5)
fig.sca(ax)
diff --git a/docs/build/html/_modules/libfmp/c4/c4s3_thumbnail.html b/docs/build/html/_modules/libfmp/c4/c4s3_thumbnail.html
index d198312..dbc18ce 100644
--- a/docs/build/html/_modules/libfmp/c4/c4s3_thumbnail.html
+++ b/docs/build/html/_modules/libfmp/c4/c4s3_thumbnail.html
@@ -7,7 +7,7 @@
- libfmp.c4.c4s3_thumbnail — libfmp 1.1.2 documentation
+ libfmp.c4.c4s3_thumbnail — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.2
+ 1.2.0
@@ -548,7 +548,7 @@ Source code for libfmp.c4.c4s3_thumbnail
[docs]def visualize_scape_plot(SP, Fs=1, ax=None, figsize=(4, 3), title='',
- xlabel='Center (seconds)', ylabel='Length (seconds)'):
+ xlabel='Center (seconds)', ylabel='Length (seconds)', interpolation='nearest'):
"""Visualize scape plot
Notebook: C4/C4S3_ScapePlot.ipynb
@@ -561,6 +561,7 @@ Source code for libfmp.c4.c4s3_thumbnail
title: Title of figure (Default value = '')
xlabel: Label for x-axis (Default value = 'Center (seconds)')
ylabel: Label for y-axis (Default value = 'Length (seconds)')
+ interpolation: Interpolation value for imshow (Default value = 'nearest')
Returns:
fig: Handle for figure
@@ -579,7 +580,7 @@ Source code for libfmp.c4.c4s3_thumbnail
SP_vis[length_minus_one, center] = SP[length_minus_one, start]
extent = np.array([-0.5, (N-1)+0.5, -0.5, (N-1)+0.5]) / Fs
- im = plt.imshow(SP_vis, cmap='hot_r', aspect='auto', origin='lower', extent=extent)
+ im = plt.imshow(SP_vis, cmap='hot_r', aspect='auto', origin='lower', extent=extent, interpolation=interpolation)
x = np.asarray(range(N))
x_half_lower = x/2
x_half_upper = x/2 + N/2 - 1/2
diff --git a/docs/build/html/_modules/libfmp/c4/c4s5_evaluation.html b/docs/build/html/_modules/libfmp/c4/c4s5_evaluation.html
index e28c971..a9c03fc 100644
--- a/docs/build/html/_modules/libfmp/c4/c4s5_evaluation.html
+++ b/docs/build/html/_modules/libfmp/c4/c4s5_evaluation.html
@@ -7,7 +7,7 @@
- libfmp.c4.c4s5_evaluation — libfmp 1.1.2 documentation
+ libfmp.c4.c4s5_evaluation — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.2
+ 1.2.0
@@ -366,7 +366,7 @@ Source code for libfmp.c4.c4s5_evaluation
colorList = np.array([[1, 1, 1, 1], [0, 0, 0, 0.7]])
cmap = ListedColormap(colorList)
- im = ax[0, 1].imshow(M, aspect='auto', cmap=cmap, origin='lower')
+ im = ax[0, 1].imshow(M, aspect='auto', cmap=cmap, origin='lower', interpolation='nearest')
im.set_clim(vmin=-0.5, vmax=1.5)
ax_cb = plt.colorbar(im, cax=ax[0, 2])
ax_cb.set_ticks(np.arange(0, 2, 1))
@@ -397,7 +397,7 @@ Source code for libfmp.c4.c4s5_evaluation
fig = plt.figure(figsize=figsize)
colorList = np.array([[1, 1, 1, 1], [0, 0.7, 0, 1], [1, 0, 0, 1], [1, 0.5, 0.5, 1]])
cmap = ListedColormap(colorList)
- im = plt.imshow(I_eval, aspect='auto', cmap=cmap, origin='lower')
+ im = plt.imshow(I_eval, aspect='auto', cmap=cmap, origin='lower', interpolation='nearest')
im.set_clim(vmin=-0.5, vmax=3.5)
plt.xticks([])
plt.yticks([])
@@ -482,7 +482,7 @@ Source code for libfmp.c4.c4s5_evaluation
'wspace': 0.2, 'height_ratios': [1, 1, 1]},
figsize=figsize)
- im = ax[0, 0].imshow(B_tol, cmap=cmap_tol)
+ im = ax[0, 0].imshow(B_tol, cmap=cmap_tol, interpolation='nearest')
ax[0, 0].set_title('Reference boundaries (with tolerance)')
im.set_clim(vmin=-0.5, vmax=2.5)
ax[0, 0].set_xticks([])
@@ -491,7 +491,7 @@ Source code for libfmp.c4.c4s5_evaluation
ax_cb.set_ticks(np.arange(0, 3, 1))
ax_cb.set_ticklabels(['', 'Positive', 'Tolerance'])
- im = ax[1, 0].imshow(np.array([B_est]), cmap=cmap_tol)
+ im = ax[1, 0].imshow(np.array([B_est]), cmap=cmap_tol, interpolation='nearest')
ax[1, 0].set_title('Estimated boundaries')
im.set_clim(vmin=-0.5, vmax=2.5)
ax[1, 0].set_xticks([])
@@ -500,7 +500,7 @@ Source code for libfmp.c4.c4s5_evaluation
ax_cb.set_ticks(np.arange(0, 3, 1))
ax_cb.set_ticklabels(['', 'Positive', 'Tolerance'])
- im = ax[2, 0].imshow(B_eval, cmap_measures)
+ im = ax[2, 0].imshow(B_eval, cmap=cmap_measures, interpolation='nearest')
ax[2, 0].set_title('Evaluation')
im.set_clim(vmin=-0.5, vmax=3.5)
ax[2, 0].set_xticks([])
diff --git a/docs/build/html/_modules/libfmp/c5/c5s2_chord_rec_template.html b/docs/build/html/_modules/libfmp/c5/c5s2_chord_rec_template.html
index 3692615..83fa2a7 100644
--- a/docs/build/html/_modules/libfmp/c5/c5s2_chord_rec_template.html
+++ b/docs/build/html/_modules/libfmp/c5/c5s2_chord_rec_template.html
@@ -7,7 +7,7 @@
- libfmp.c5.c5s2_chord_rec_template — libfmp 1.1.1 documentation
+ libfmp.c5.c5s2_chord_rec_template — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.1
+ 1.2.0
@@ -507,7 +507,8 @@ Source code for libfmp.c5.c5s2_chord_rec_template
y_ext2 = (F_coef[-1] - F_coef[-2]) / 2
extent = [T_coef[0] - x_ext1, T_coef[-1] + x_ext2, F_coef[0] - y_ext1, F_coef[-1] + y_ext2]
- im = ax[0].imshow(I_vis, origin='lower', aspect='auto', cmap=eval_cmap, norm=eval_norm, extent=extent)
+ im = ax[0].imshow(I_vis, origin='lower', aspect='auto', cmap=eval_cmap, norm=eval_norm, extent=extent,
+ interpolation='nearest')
if len(ax) == 2:
cbar = plt.colorbar(im, cax=ax[1], cmap=eval_cmap, norm=eval_norm, boundaries=eval_bounds, ticks=eval_ticks)
elif len(ax) == 1:
diff --git a/docs/build/html/_modules/libfmp/c5/c5s3_chord_rec_hmm.html b/docs/build/html/_modules/libfmp/c5/c5s3_chord_rec_hmm.html
index a9c1095..d12d31f 100644
--- a/docs/build/html/_modules/libfmp/c5/c5s3_chord_rec_hmm.html
+++ b/docs/build/html/_modules/libfmp/c5/c5s3_chord_rec_hmm.html
@@ -7,7 +7,7 @@
- libfmp.c5.c5s3_chord_rec_hmm — libfmp 1.1.1 documentation
+ libfmp.c5.c5s3_chord_rec_hmm — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.1
+ 1.2.0
@@ -389,7 +389,7 @@ Source code for libfmp.c5.c5s3_chord_rec_hmm
A_plot = A
cbar_label = 'Probability'
clim = [0, 1]
- im = ax[0].imshow(A_plot, origin='lower', aspect='equal', cmap=cmap)
+ im = ax[0].imshow(A_plot, origin='lower', aspect='equal', cmap=cmap, interpolation='nearest')
im.set_clim(clim)
plt.sca(ax[0])
cbar = plt.colorbar(im)
diff --git a/docs/build/html/_modules/libfmp/c7/c7s1_audio_id.html b/docs/build/html/_modules/libfmp/c7/c7s1_audio_id.html
index ae1d446..34b3293 100644
--- a/docs/build/html/_modules/libfmp/c7/c7s1_audio_id.html
+++ b/docs/build/html/_modules/libfmp/c7/c7s1_audio_id.html
@@ -7,7 +7,7 @@
- libfmp.c7.c7s1_audio_id — libfmp 1.1.2 documentation
+ libfmp.c7.c7s1_audio_id — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.2
+ 1.2.0
@@ -262,7 +262,7 @@ Source code for libfmp.c7.c7s1_audio_id
if Y is None:
Y = np.zeros((K, N))
fig, ax = plt.subplots(1, 1, figsize=figsize, dpi=dpi)
- im = ax.imshow(Y, origin='lower', aspect='auto', cmap='gray_r')
+ im = ax.imshow(Y, origin='lower', aspect='auto', cmap='gray_r', interpolation='nearest')
ax.set_xlabel(xlabel)
ax.set_ylabel(ylabel)
ax.set_title(title)
diff --git a/docs/build/html/_modules/libfmp/c8/c8s2_f0.html b/docs/build/html/_modules/libfmp/c8/c8s2_f0.html
index 8890ee2..282741e 100644
--- a/docs/build/html/_modules/libfmp/c8/c8s2_f0.html
+++ b/docs/build/html/_modules/libfmp/c8/c8s2_f0.html
@@ -7,7 +7,7 @@
- libfmp.c8.c8s2_f0 — libfmp 1.1.2 documentation
+ libfmp.c8.c8s2_f0 — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.2
+ 1.2.0
@@ -318,7 +318,7 @@ Source code for libfmp.c8.c8s2_f0
fig, ax = plt.subplots(1, 1, figsize=figsize)
sal = ax.imshow(Z, extent=[T_coef[0], T_coef[-1], F_coef_cents[0], F_coef_cents[-1]],
- cmap=cmap, origin='lower', aspect='auto')
+ cmap=cmap, origin='lower', aspect='auto', interpolation='nearest')
y_ticklabels_left = np.arange(F_coef_cents[0], F_coef_cents[-1]+1, 1200)
ax.set_yticks(y_ticklabels_left)
diff --git a/docs/build/html/_modules/libfmp/c8/c8s3_nmf.html b/docs/build/html/_modules/libfmp/c8/c8s3_nmf.html
index 64358cd..a5daf30 100644
--- a/docs/build/html/_modules/libfmp/c8/c8s3_nmf.html
+++ b/docs/build/html/_modules/libfmp/c8/c8s3_nmf.html
@@ -7,7 +7,7 @@
- libfmp.c8.c8s3_nmf — libfmp 1.1.1 documentation
+ libfmp.c8.c8s3_nmf — libfmp 1.2.0 documentation
@@ -67,7 +67,7 @@
- 1.1.1
+ 1.2.0
@@ -289,7 +289,7 @@ Source code for libfmp.c8.c8s3_nmf
plt.figure(figsize=figsize)
plt.subplot(131)
- plt.imshow(W, cmap=cmap, origin='lower', aspect='auto', extent=[0, R, 0, Fs/2])
+ plt.imshow(W, cmap=cmap, origin='lower', aspect='auto', extent=[0, R, 0, Fs/2], interpolation='nearest')
plt.ylim([0, freq_max])
plt.colorbar()
plt.xticks(np.arange(R) + 0.5, label_pitch)
@@ -298,7 +298,7 @@ Source code for libfmp.c8.c8s3_nmf
plt.title(title_W)
plt.subplot(132)
- plt.imshow(H, cmap=cmap, origin='lower', aspect='auto', extent=[0, dur_sec, 0, R])
+ plt.imshow(H, cmap=cmap, origin='lower', aspect='auto', extent=[0, dur_sec, 0, R], interpolation='nearest')
plt.colorbar()
plt.yticks(np.arange(R) + 0.5, label_pitch)
plt.xlabel('Time (seconds)')
@@ -306,7 +306,7 @@ Source code for libfmp.c8.c8s3_nmf
plt.title(title_H)
plt.subplot(133)
- plt.imshow(V, cmap=cmap, origin='lower', aspect='auto', extent=[0, dur_sec, 0, Fs/2])
+ plt.imshow(V, cmap=cmap, origin='lower', aspect='auto', extent=[0, dur_sec, 0, Fs/2], interpolation='nearest')
plt.ylim([0, freq_max])
plt.colorbar()
plt.xlabel('Time (seconds)')
diff --git a/docs/build/html/_static/documentation_options.js b/docs/build/html/_static/documentation_options.js
index 120e3ee..872f3fb 100644
--- a/docs/build/html/_static/documentation_options.js
+++ b/docs/build/html/_static/documentation_options.js
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
- VERSION: '1.2.1',
+ VERSION: '1.2.2',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
BUILDER: 'html',
diff --git a/docs/build/html/genindex.html b/docs/build/html/genindex.html
index 3eb8b92..659e7f3 100644
--- a/docs/build/html/genindex.html
+++ b/docs/build/html/genindex.html
@@ -7,7 +7,7 @@
- Index — libfmp 1.2.1 documentation
+ Index — libfmp 1.2.2 documentation
@@ -67,7 +67,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/getting_started.html b/docs/build/html/getting_started.html
index 9dd6f01..35c133c 100644
--- a/docs/build/html/getting_started.html
+++ b/docs/build/html/getting_started.html
@@ -7,7 +7,7 @@
- Getting Started — libfmp 1.2.1 documentation
+ Getting Started — libfmp 1.2.2 documentation
@@ -69,7 +69,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/index.html b/docs/build/html/index.html
index 9d73139..3895176 100644
--- a/docs/build/html/index.html
+++ b/docs/build/html/index.html
@@ -7,7 +7,7 @@
- Libfmp API Documentation — libfmp 1.2.1 documentation
+ Libfmp API Documentation — libfmp 1.2.2 documentation
@@ -68,7 +68,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/index_b.html b/docs/build/html/index_b.html
index 92b4389..1b96b78 100644
--- a/docs/build/html/index_b.html
+++ b/docs/build/html/index_b.html
@@ -7,7 +7,7 @@
- Basics (libfmp.b) — libfmp 1.2.1 documentation
+ Basics (libfmp.b) — libfmp 1.2.2 documentation
@@ -69,7 +69,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/index_c1.html b/docs/build/html/index_c1.html
index ae3bcd8..72a0d75 100644
--- a/docs/build/html/index_c1.html
+++ b/docs/build/html/index_c1.html
@@ -7,7 +7,7 @@
- Music Representations (libfmp.c1) — libfmp 1.2.1 documentation
+ Music Representations (libfmp.c1) — libfmp 1.2.2 documentation
@@ -69,7 +69,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/index_c2.html b/docs/build/html/index_c2.html
index 57ac493..266dd3d 100644
--- a/docs/build/html/index_c2.html
+++ b/docs/build/html/index_c2.html
@@ -7,7 +7,7 @@
- Fourier Analysis of Signals (libfmp.c2) — libfmp 1.2.1 documentation
+ Fourier Analysis of Signals (libfmp.c2) — libfmp 1.2.2 documentation
@@ -69,7 +69,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/index_c3.html b/docs/build/html/index_c3.html
index 5cff733..40bfc31 100644
--- a/docs/build/html/index_c3.html
+++ b/docs/build/html/index_c3.html
@@ -7,7 +7,7 @@
- Music Synchronization (libfmp.c3) — libfmp 1.2.1 documentation
+ Music Synchronization (libfmp.c3) — libfmp 1.2.2 documentation
@@ -69,7 +69,7 @@
- 1.2.1
+ 1.2.2
diff --git a/docs/build/html/index_c4.html b/docs/build/html/index_c4.html
index 448ac6b..a7f8d26 100644
--- a/docs/build/html/index_c4.html
+++ b/docs/build/html/index_c4.html
@@ -7,7 +7,7 @@
- Music Structure Analysis (libfmp.c4) — libfmp 1.2.1 documentation
+ Music Structure Analysis (libfmp.c4) — libfmp 1.2.2 documentation
@@ -69,7 +69,7 @@
- 1.2.1
+ 1.2.2
@@ -440,7 +440,7 @@ Music Structure Analysis (libfmp.c4)
-libfmp.c4.c4s2_ssm.
subplot_matrix_colorbar
(S, fig, ax, title='', Fs=1, xlabel='Time (seconds)', ylabel='Time (seconds)', clim=None, xlim=None, ylim=None, cmap=None)[source]¶
+libfmp.c4.c4s2_ssm.
subplot_matrix_colorbar
(S, fig, ax, title='', Fs=1, xlabel='Time (seconds)', ylabel='Time (seconds)', clim=None, xlim=None, ylim=None, cmap=None, interpolation='nearest')[source]¶
Visualization function for showing zoomed sections of matrices
Notebook: C4/C4S2_SSM-PathEnhancement.ipynb
@@ -457,6 +457,7 @@ Music Structure Analysis (libfmp.c4)Returns
@@ -467,7 +468,7 @@ Music Structure Analysis (libfmp.c4)
-
-
libfmp.c4.c4s2_ssm.
subplot_matrix_ti_colorbar
(S, fig, ax, title='', Fs=1, xlabel='Time (seconds)', ylabel='Time (seconds)', clim=None, xlim=None, ylim=None, cmap=None, alpha=1, ind_zero=False)[source]¶
+libfmp.c4.c4s2_ssm.
subplot_matrix_ti_colorbar
(S, fig, ax, title='', Fs=1, xlabel='Time (seconds)', ylabel='Time (seconds)', clim=None, xlim=None, ylim=None, cmap=None, alpha=1, interpolation='nearest', ind_zero=False)[source]¶
Visualization function for showing transposition index matrix
Notebook: C4/C4S2_SSM-TranspositionInvariance.ipynb
@@ -484,7 +485,8 @@ Music Structure Analysis (libfmp.c4)
-
-
libfmp.c4.c4s3_thumbnail.
visualize_scape_plot
(SP, Fs=1, ax=None, figsize=(4, 3), title='', xlabel='Center (seconds)', ylabel='Length (seconds)')[source]¶
+libfmp.c4.c4s3_thumbnail.
visualize_scape_plot
(SP, Fs=1, ax=None, figsize=(4, 3), title='', xlabel='Center (seconds)', ylabel='Length (seconds)', interpolation='nearest')[source]¶
Visualize scape plot
Notebook: C4/C4S3_ScapePlot.ipynb