functime-org / functime

Time-series machine learning at scale. Built with Polars for embarrassingly parallel feature extraction and forecasts on panel data.

Home Page:https://docs.functime.ai

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rank_* functions should accept a `num_series` param

baggiponte opened this issue · comments

rank_* functions should have a num_series param to dispatch to top_k and bottom_k to return top results, rather than sorting the whole series. this is more performant and saves the users from calling .head() or .tail() on a DataFrame. Related to #84