We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cf71c6 commit b860476Copy full SHA for b860476
1 file changed
src/ydata_profiling/report/structure/report.py
@@ -147,10 +147,11 @@ def render_variables_section(
147
variable_type = list(types)[0]
148
else:
149
# This logic may be treated by the typeset
150
- if (types == {"Numeric", "Categorical"}) or types == {
151
- "Categorical",
152
- "Unsupported",
153
- }:
+ if (
+ types == {"Numeric", "Categorical"}
+ or types == {"Categorical", "Unsupported"}
+ or types == {"Categorical", "Text"}
154
+ ):
155
# Treating numeric as categorical, if one is unsupported, still render as categorical
156
variable_type = "Categorical"
157
0 commit comments