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 64ddc0d commit a522c32Copy full SHA for a522c32
src/ydata_profiling/report/structure/variables/render_categorical.py
@@ -136,6 +136,9 @@ def render_categorical_unicode(
136
for category_alias_name, category_alias_counts in sorted(
137
summary["category_alias_char_counts"].items(), key=lambda x: -len(x[1])
138
):
139
+ if category_alias_name is None:
140
+ continue
141
+
142
category_alias_name = category_alias_name.replace("_", " ")
143
cats.append(
144
FrequencyTable(
0 commit comments