8000 pandas sort issue · Issue #670 · yhat/ggpy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
pandas sort issue #670
Open
Open
@iuiu34

Description

@iuiu34

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'

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0