We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dbe341 commit 7cdc2b0Copy full SHA for 7cdc2b0
ads/feature_engineering/feature_type/creditcard.py
@@ -198,6 +198,7 @@ def feature_stat(x: pd.Series):
198
df_stat = _count_unique_missing(x)
199
card_types = x.apply(assign_issuer)
200
value_counts = card_types.value_counts()
201
+ value_counts.rename("creditcard", inplace=True)
202
value_counts.index = [
203
"count_" + cardtype for cardtype in list(value_counts.index)
204
]
0 commit comments