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
tsd.get_chunks(window_size, overlap) -> slice object. Helper function to create chunking of time series. Useful for writing batch loop to load memory map chunk and apply some functions.
tsd.apply(func, windowsize, overlap) -> new tsd. Batching function that apply func over time series. Calls the method get_chunks.
tsd.compute() To be used when passing a dask array. Solely for dask compatibility.
tsgroup.groupby("metadata_col") -> dict of tsgroup
tsgroup.groupby_apply(metadata_col, nap_function, arg, kwargs) -> results. Group and apply a pynapple high level function.
The text was updated successfully, but these errors were encountered:
tsd.get_chunks(window_size, overlap)
-> slice object. Helper function to create chunking of time series. Useful for writing batch loop to load memory map chunk and apply some functions.tsd.apply(func, windowsize, overlap)
-> new tsd. Batching function that applyfunc
over time series. Calls the methodget_chunks
.tsd.compute()
To be used when passing a dask array. Solely for dask compatibility.tsgroup.groupby("metadata_col")
-> dict of tsgrouptsgroup.groupby_apply(metadata_col, nap_function, arg, kwargs)
-> results. Group and apply a pynapple high level function.The text was updated successfully, but these errors were encountered: