pythonpandascountdistinct-valuesvisualize

Expand value_counts() view?


Does anybody know how I visualize all values?

enter image description here


Solution

  • According to pandas set_option docs, display.max_rows is the value you need to modify. Try this:

    import pandas as pd
    pd.set_option('display.max_rows', None)
    

    To display unlimited rows.