You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi @spullara. You should definitely be able to configure the max unique values so that your column with 117 unique values would be an enum column. Currently, the only way to do that is to pass a config file with the column name, type, and a list of all of the variants. There are two potential implementations that would achieve what you want:
In the config file, allow passing a json object that includes the csv infer options:
Allow passing the column name and type but not force the user to pass the all unique variants in a list.
I think option 2 is probably closer to the interface might be looking for? This way you get to configure the type per column but don't have to pass all of the variants (which for enums with high numbers of options is cumbersome).
I am getting text search instead of an enum by default for a column that has 117 unique values (out of the 18k or so samples provided).
The text was updated successfully, but these errors were encountered: