Skip to content

Commit e509101

Browse files
jleratJulien Lerat
and
Julien Lerat
authored
Bug/fixecdfplot (#18)
* doc: removed bitbucket pipeline [ci-skip] * chore: moved pipeline and created reduced conda env spec * fix: fixed dataframe method in ecdfplot --------- Co-authored-by: Julien Lerat <[email protected]>
1 parent af1cb71 commit e509101

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hydrodiy/plot/putils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def ecdfplot(ax, df, label_stat=None, label_stat_format="4.2f", \
517517
Dictionnary containing the line object for each column in df.
518518
"""
519519
lines = {}
520-
for name, se in df.iteritems():
520+
for name, se in df.items():
521521
values = se.sort_values().values
522522
values = values[~np.isnan(values)]
523523

0 commit comments

Comments
 (0)