Reputation: 77
I am creating a Pandas Profiling Report. Under "Variable" detailed information of each column is displayed. When I press "Toggle details" and navigate to "categories" the most common values appear ending with "Other values" which are about 50% in my dataset. Is there a possibility to print all values in that report, so the other values are not combined?
Upvotes: 2
Views: 761
Reputation: 77
Set the amount of displayed rows (in this example 250):
profile = ProfileReport(df, n_freq_table_max=250)
Upvotes: 2