Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fpmax for sparse matrices #1000

Merged
merged 2 commits into from
Dec 3, 2022
Merged

Fix fpmax for sparse matrices #1000

merged 2 commits into from
Dec 3, 2022

Commits on Dec 1, 2022

  1. Fix fpgrowth for sparse matrices

    While this function technically supports sparse matrices, it calls
    `pd.DataFrame.values` in order to get the number of rows in the
    DataFrame. Unfortunately, `.values` forces the entire DataFrame to be
    converted into a non-sparse 2D numpy array, which obliviates the whole
    purpose behind using a sparse matrix in the first place. It's a simple
    fix though.
    tkellogg committed Dec 1, 2022
    Configuration menu
    Copy the full SHA
    6b3ff0c View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2022

  1. add changelog entry

    Sebastian Raschka committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    29c97c0 View commit details
    Browse the repository at this point in the history