df.upsample("creation_date", every="1d") #<-- never finishes
Log output
none
Issue description
I have a dataframe with an "object" type column filled with pathlib.Path objects. When I try to "upsample" the dataframe by the "creation_date" column, it hangs.
However, if I remove the "object" column, upsample works fine.
I expected the upsample method to work even in the presence of an "object" type column, and fill values in the "object" column with null like it does for the other columns
Checks
Reproducible example
Given a dataframe with an "object" type column
"upsampling" appears to hang...
Log output
Issue description
I have a dataframe with an "object" type column filled with pathlib.Path objects. When I try to "upsample" the dataframe by the "creation_date" column, it hangs.
However, if I remove the "object" column, upsample works fine.
Expected behavior
I expected the
upsample
method to work even in the presence of an "object" type column, and fill values in the "object" column withnull
like it does for the other columnsInstalled versions