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

Address FutureWarning From pandas.concat In gempyor #245

Merged

Commits on Jun 28, 2024

  1. Reduced multiple pd.concat calls into one

    Consolidated multiple pd.concat calls into one in
    compute_all_multioutcomes building hpar df. Addresses pandas
    FutureWarning in concating an empty df and slightly more performant.
    TimothyWillard committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    9e1bbce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    55df84b View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    7bd75af View commit details
    Browse the repository at this point in the history
  2. Remove unneeded set_index

    `set_index` call maintained prior behavior of creating an index like
    0,1,...,N,0,1,...,N. Now the index goes 0,1,...,2N. This index does not
    get used so it is a harmless breaking change.
    TimothyWillard committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    88d6559 View commit details
    Browse the repository at this point in the history