Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 5882558

Browse files
committed
[plots] remove print statement
1 parent e39b4c6 commit 5882558

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pyemma/plots/timescales.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,9 @@ def plot_implied_timescales(ITS, ax=None, outfile=None, show_mle=True, show_mean
141141
process_samples = timescales_samples[:, i, :].T
142142
if show_mean:
143143
sample_mean = _np.mean(process_samples, axis=0)
144-
print(sample_mean.shape)
145144
ax.plot(
146145
lags[srt] * dt[0], sample_mean[srt] * dt[1], marker='o',
147146
color=colors[i % len(colors)], linestyle='dashed')
148-
print(process_samples.shape)
149147
lconf, rconf = _conf(process_samples, conf=confidence)
150148
ax.fill_between(
151149
lags[srt] * dt[0], lconf[srt] * dt[1], rconf[srt] * dt[1],

0 commit comments

Comments
 (0)