df.style.apply центрирует многоиндексные значения на дисплее
#python #pandas #jupyter #python #панды #jupyter Вопрос: Когда я запускаю import pandas as pd from IPython.display import display df = pd.DataFrame('a',index=pd.MultiIndex.from_product([[0,1]]*3),columns=['A']) display(df) display(df.style.apply(lambda x: ['']*len(x),axis=1)) в Jupyter я получаю следующие…