I have a timeseries of data and I'd like to use VAEX to manipulate it. I need to groupby an integer "species" column and then also bin by minute. I have tried
air_df.groupby(by = [vaex.BinnerTime(air_df["DT"],resolution = "m"),air_df["species"]])
but it gives an error "pyarrow.lib.ArrowNotImplementedError: Unsupported datetime64 time unit" It can manage grouping on both columns seperately, but when combined it fails. Is there any way to do this?