I use pd.set_option(\"display.colheader_justify\",\"right\") to set the column header. But I can\'t find the option for data by pd.describe_option()
pd.set_option(\"display.colheader_justify\",\"right\")
pd.describe_option()
you can control it by a new context:
with pd.option_context('display.colheader_justify','right'): ...