You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in ggplot/ggplot.py line 602 is calling fill_levels = self.data[[fillcol_raw, fillcol]].sort(fillcol_raw)[fillcol].unique()
instead of fill_levels = self.data[[fillcol_raw, fillcol]].sort_values(by=fillcol_raw)[fillcol].unique()
as with new pandas update 'sort_value' / deprecating 'sort'
The text was updated successfully, but these errors were encountered:
in ggplot/ggplot.py line 602 is calling
fill_levels = self.data[[fillcol_raw, fillcol]].sort(fillcol_raw)[fillcol].unique()
instead of
fill_levels = self.data[[fillcol_raw, fillcol]].sort_values(by=fillcol_raw)[fillcol].unique()
as with new pandas update 'sort_value' / deprecating 'sort'
The text was updated successfully, but these errors were encountered: