liam beck
liam beck

Reputation: 77

Show "Other Values" in Pandas Profiling Report

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

Answers (1)

liam beck
liam beck

Reputation: 77

Set the amount of displayed rows (in this example 250):

profile = ProfileReport(df, n_freq_table_max=250)

Upvotes: 2

Related Questions