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

BUG: fix issue with concat creating SparseFrame if not all series are sparse. #18924

Merged
merged 13 commits into from
Feb 1, 2018

Commits on Jan 11, 2018

  1. BUG: fix issue with sparse concatting

    This was originally brought up in :issue:`18686` and :issue:`18914`.
    Basically the problem is when you use get_dummies with sparse=True it
    will return a SparseDataFrame with sparse and dense columns. This is in
    fact not what we want. What we want is a DataFrame with sparse and dense
    columns.
    
    Inside of pandas.core.dtypes.concat is a function that defines the
    factory class which needed to be changed.
    hexgnu committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    ba8dc29 View commit details
    Browse the repository at this point in the history
  2. Add tests for 16874

    hexgnu committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    05a0717 View commit details
    Browse the repository at this point in the history
  3. Add more specific tests

    hexgnu committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    6fc6369 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2018

  1. Configuration menu
    Copy the full SHA
    4116da7 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2018

  1. Configuration menu
    Copy the full SHA
    2ee0391 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2018

  1. Configuration menu
    Copy the full SHA
    44aa41a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1b9e976 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2018

  1. Configuration menu
    Copy the full SHA
    3c0a4da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    90a5003 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2018

  1. Configuration menu
    Copy the full SHA
    126db41 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6d01387 View commit details
    Browse the repository at this point in the history
  3. Cleanup linting problems

    hexgnu committed Jan 31, 2018
    Configuration menu
    Copy the full SHA
    81aba2e View commit details
    Browse the repository at this point in the history
  4. Cleanup on tests from PR

    hexgnu committed Jan 31, 2018
    Configuration menu
    Copy the full SHA
    0768990 View commit details
    Browse the repository at this point in the history