Ejemplo n.º 1
0
class ConfigAggregateColumns(Config):
    """
    Parameters to select which columns to aggregate
    """
    aggregate_columns = ParamCreator.create_list_int(
        help_string=
        "column to aggregate by (list of numbers separated by comma)", )
Ejemplo n.º 2
0
class ConfigMatchColumns(Config):
    """
    Parameters to select which columns to match by
    """
    match_columns = ParamCreator.create_list_int(
        help_string="column to match by (list of numbers separated by comma)",
    )
Ejemplo n.º 3
0
class ConfigColumns(Config):
    """
    Parameters to select which columns to use
    """
    columns = ParamCreator.create_list_int(
        help_string="columns to use (list of numbers separated by comma)", )