Source code for get_pop.modules.init.pandas_opts
import pandas as pd
[docs]def pandas_opts() -> None:
"""
Sets desired pandas options.
Returns:
None
"""
pd.set_option("display.max_columns", 20)
pd.set_option("display.width", 2000)
pd.set_option("display.max_rows", 2000)