Skip to content

Commit

Permalink
fix showCumulFractVars axis range
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Oct 17, 2023
1 parent a15eaf7 commit f81837f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prody/dynamics/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def showCumulFractVars(modes, *args, **kwargs):
fracts = calcFractVariance(modes).cumsum()
show = plt.plot(indices, fracts, *args, **kwargs)
axis = list(plt.axis())
axis[0] = 0.5
axis[0] = -0.5
axis[2] = 0
axis[3] = 1
plt.axis(axis)
Expand Down

0 comments on commit f81837f

Please sign in to comment.