Skip to content

Commit

Permalink
fixes #59
Browse files Browse the repository at this point in the history
  • Loading branch information
Kay-Robert Dormann committed Oct 17, 2024
1 parent 49bbda0 commit ec40876
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amep/evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -3480,9 +3480,9 @@ def __init__(
>>> axs.plot(clg.times, clg.frames, label="largest")
>>> clg = amep.evaluate.ClusterGrowth(traj, mode="mean")
>>> axs.plot(clg.times, clg.frames, label="mean")
>>> clg = amep.evaluate.ClusterGrowth(ptraj, mode="mean", min_size=20)
>>> clg = amep.evaluate.ClusterGrowth(traj, mode="mean", min_size=20)
>>> axs.plot(clg.times, clg.frames, label="mean min 20")
>>> clg = amep.evaluate.ClusterGrowth(ptraj, mode="weighted mean")
>>> clg = amep.evaluate.ClusterGrowth(traj, mode="weighted mean")
>>> axs.plot(clg.times, clg.frames, label="weighted mean")
>>> axs.loglog()
>>> axs.legend()
Expand Down
Binary file modified examples/data/lammps.h5amep
Binary file not shown.

0 comments on commit ec40876

Please sign in to comment.