API — Dask documentation
https://docs.dask.org/en/stable/dataframe-api.htmlDataFrame (dsk, name, meta, divisions). Parallel Pandas DataFrame. DataFrame.abs (). Return a Series/DataFrame with absolute numeric value of each element. DataFrame.add (other[, axis, level, fill_value]). Get Addition of dataframe and other, element-wise (binary operator add).. DataFrame.align (other[, join, axis, fill_value]). Align two objects on their axes with the specified …
pandas.DataFrame.merge — pandas 1.3.5 documentation
https://pandas.pydata.org/.../reference/api/pandas.DataFrame.merge.htmlpandas.DataFrame.merge¶ DataFrame. merge (right, how = 'inner', on = None, left_on = None, right_on = None, left_index = False, right_index = False, sort = False, suffixes = ('_x', '_y'), copy = True, indicator = False, validate = None) [source] ¶ Merge DataFrame or named Series objects with a database-style join. A named Series object is treated as a DataFrame with a single …
pandas.merge_asof — pandas 1.3.5 documentation
pandas.pydata.org › api › pandaspandas.merge_asof(left, right, on=None, left_on=None, right_on=None, left_index=False, right_index=False, by=None, left_by=None, right_by=None, suffixes= ('_x', '_y'), tolerance=None, allow_exact_matches=True, direction='backward') [source] ¶. Perform an asof merge.