From 6172385d9161b9ef457feb608dbd36ab668eb068 Mon Sep 17 00:00:00 2001 From: olasaadi Date: Mon, 28 Mar 2022 00:07:23 +0300 Subject: [PATCH] update docstring --- apt/anonymization/anonymizer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt/anonymization/anonymizer.py b/apt/anonymization/anonymizer.py index 1720d99..db5a29b 100644 --- a/apt/anonymization/anonymizer.py +++ b/apt/anonymization/anonymizer.py @@ -22,9 +22,9 @@ class Anonymize: """ :param k: The privacy parameter that determines the number of records that will be indistinguishable from each other (when looking at the quasi identifiers). Should be at least 2. - :param quasi_identifiers: The features that need to be minimized. It can be a list of feature name (strings) if + :param quasi_identifiers: The features that need to be minimized. It can be a list of feature names (strings) if dataset.feature_names is set, otherwise a list of indexes (integers). - :param categorical_features: The list of categorical features. It can be a list of feature name (strings) if + :param categorical_features: The list of categorical features. It can be a list of feature names (strings) if dataset.feature_names is set, otherwise a list of indexes (integers). :param is_regression: Boolean param indicates that is is a regression problem. """