pandasΒΆ

Module to export native pandas based pipeline operators

tasrif.processing_pipeline.pandas.astype_operator

Cast a pandas object to a specified dtype dtype.

tasrif.processing_pipeline.pandas.concat_operator

Concatenate multiple dataframes into a single one.

tasrif.processing_pipeline.pandas.convert_to_datetime

Operator to convert a column feature from string to datetime

tasrif.processing_pipeline.pandas.corr_operator

Corr operator

tasrif.processing_pipeline.pandas.cut_operator

Operator to convert a continuous variable to a categorical variable, useful for binning data

tasrif.processing_pipeline.pandas.drop_duplicates_operator

Remove duplicate values from one or more dataframes.

tasrif.processing_pipeline.pandas.drop_features_operator

Remove missing values from one or more dataframes.

tasrif.processing_pipeline.pandas.drop_na_operator

Drop NaN values from one or more dataframes

tasrif.processing_pipeline.pandas.fill_na_operator

Fill NaN values for one or more dataframes

tasrif.processing_pipeline.pandas.groupby_operator

Groupby Operator

tasrif.processing_pipeline.pandas.json_normalize_operator

Normalize semi-structured JSON data into a flat table.

tasrif.processing_pipeline.pandas.mean_operator

Mean operator

tasrif.processing_pipeline.pandas.merge_operator

Merge multiple dataframes into a single one.

tasrif.processing_pipeline.pandas.pivot_operator

Pivots a dataframe

tasrif.processing_pipeline.pandas.pivot_reset_columns_operator

Pivots a dataframe and realigns its columns to remove any multi-indices.

tasrif.processing_pipeline.pandas.qcut_operator

Operator to convert a continuous variable to a categorical variable, useful for binning data

tasrif.processing_pipeline.pandas.read_csv_operator

tasrif.processing_pipeline.pandas.rename_operator

Renames dataframe elements (rows, columns) using Pandas rename method.

tasrif.processing_pipeline.pandas.replace_operator

Replaces values in multiple dataframes based on Pandas replace method.

tasrif.processing_pipeline.pandas.reset_index_operator

Resets the DataFrame index.

tasrif.processing_pipeline.pandas.rolling_operator

Rolling Operator

tasrif.processing_pipeline.pandas.set_index_operator

Set the DataFrame index using existing columns.

tasrif.processing_pipeline.pandas.sort_operator

Sort multiple dataframes based on some keys

tasrif.processing_pipeline.pandas.sum_operator

Sum operator