AutoViML / AutoViz

Automatically Visualize any dataset, any size with a single line of code. Created by Ram Seshadri. Collaborators Welcome. Permission Granted upon Request.
Apache License 2.0
1.7k stars 196 forks source link

ID identification not working as expected #91

Closed auguryChris closed 1 year ago

auguryChris commented 1 year ago

column labelled 'Id' in dataframe and the columns is found by analyze_ID_columns(). However, visual params list ID Columns as [] and instead Discrete string variables %s " ['Id']"

Also it is typically better to do nomenclature matching on a forced string case such as lower() or upper()

AutoViML commented 1 year ago

Sometimes your Id variable may not be a unique ID variable for your rows. Hence in that case, AutoViz chooses to categorize them as discrete_string_vars. This is part of a very complicated logic that I use. If you want to fix it, you can post a PR and I can take a look. Sorry

Auto Vimal