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
As reported in comments for #368, a workaround was made in the dist function in order to make it work with pandas >= 0.24.0, < 0.25.0. This version of pandas doesn't allow to concatenate two pandas.Series with a CategoricalIndex if having a different index length and therefore the following code was written to handle this.
Describe the solution you'd like
This workaround will need to be replaced with distributions = pd.concat([distributions, distribution], axis=1) when a breaking change release will be made of the brightwind library and the requirements will be updated to work only with pandas >= 0.25.0.
The text was updated successfully, but these errors were encountered:
As reported in comments for #368, a workaround was made in the
dist
function in order to make it work with pandas >= 0.24.0, < 0.25.0. This version of pandas doesn't allow to concatenate two pandas.Series with a CategoricalIndex if having a different index length and therefore the following code was written to handle this.Describe the solution you'd like
This workaround will need to be replaced with
distributions = pd.concat([distributions, distribution], axis=1)
when a breaking change release will be made of the brightwind library and the requirements will be updated to work only with pandas >= 0.25.0.The text was updated successfully, but these errors were encountered: