有人知道我如何可视化所有价值观吗?
根据pandas set_option docs,
display.max_rows
import pandas as pd pd.set_option('display.max_rows', None)
显示无限行。
一次性无需更改全局设置:
print(df.value_counts().to_string())