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

Commit

Permalink
[plots] remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
clonker committed Feb 26, 2021
1 parent e39b4c6 commit 5882558
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pyemma/plots/timescales.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,9 @@ def plot_implied_timescales(ITS, ax=None, outfile=None, show_mle=True, show_mean
process_samples = timescales_samples[:, i, :].T
if show_mean:
sample_mean = _np.mean(process_samples, axis=0)
print(sample_mean.shape)
ax.plot(
lags[srt] * dt[0], sample_mean[srt] * dt[1], marker='o',
color=colors[i % len(colors)], linestyle='dashed')
print(process_samples.shape)
lconf, rconf = _conf(process_samples, conf=confidence)
ax.fill_between(
lags[srt] * dt[0], lconf[srt] * dt[1], rconf[srt] * dt[1],
Expand Down

0 comments on commit 5882558

Please sign in to comment.