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
I don't know if it is desirable, but I think it would be nice to be able to include an infinity value as the endpoint to the bins in pandas cut function.
pd.cut([10, 20], [1, 5, np.inf], right=False)
The text was updated successfully, but these errors were encountered:
Actually this is possible, however the _format_labels function tile.py has to be fixed to properly display inf values. If you define the labels manually it works.
I don't know if it is desirable, but I think it would be nice to be able to include an infinity value as the endpoint to the bins in pandas cut function.
The text was updated successfully, but these errors were encountered: