我正在尝试将自定义样式赋予数据框可视化效果。 这是我的示例代码:
import pandas as pd
import numpy as np
np.random.seed(24)
df = pd.DataFrame({'A': np.linspace(1, 10, 10)})
df = pd.concat([df, pd.DataFrame(np.random.randn(10, 4), columns=list('BCDE'))],axis=1)
df.iloc[0, 2] = np.nan
df.style.bar(subset=['A', 'B'], color='#d65f5f').hide_index().set_properties(**{'text-align': 'left'})
我的问题是列名右对齐。 我找不到纠正它的方法。请帮助我!
答案 0 :(得分:0)
您可以在打印时使用它们:
print(df.to_string(justify='center', index=False))
print(df.to_string(justify='left', index=False))