gws_core

Introduction
Getting Started
Developer guide
Release
Architecture
CLI
Technical documentations
Version

DataframeDataFilterHelper

Helper to filter dataframe rows or columns base on dataframe values

Functions
filter_columns_by_aggregated_values @classmethod

Filter the dataframe columns based on value of the provided rows with numeric comparator

data : DataFrame
func : Literal
comp : Literal
value : float
Return type : DataFrame
filter_columns_numeric @classmethod

Filter the dataframe columns based on value of the provided rows with numeric comparator

data : DataFrame
row_name_regex : str
comp : Literal
value : float
Return type : DataFrame
filter_columns_text @classmethod

Filter the dataframe columns based on value of the provided rows with text comparator

data : DataFrame
row_name_regex : str
comp : Literal
value : str
Return type : DataFrame
filter_rows_by_aggregated_values @classmethod
data : DataFrame
func : Literal
comp : Literal
value : float
Return type : DataFrame
filter_rows_numeric @classmethod

Filter the dataframe rows based on value of the provided columns with numeric comparator

data : DataFrame
column_name_regex : str
comp : Literal
value : float
Return type : DataFrame
filter_rows_text @classmethod

Filter the dataframe rows based on value of the provided columns with text comparator

data : DataFrame
column_name_regex : str
comp : Literal
value : str
Return type : DataFrame