Pandas, Excel-Import and MultiIndex
问题 I am new to pandas and currently trying to make some analysis of Excel-data in the following Schema: My goal is a visualisation with the index-labels XYZ , CDE , EFG , HU on the x-axis and the corresponing Perc -values of Yes , ProbYes , X , ProbNo , No stacked on the y-axis. Currently I'm parsing the Excel-data into a panda DataFrame via the code: import pandas as pd path = 'x1.xlsx' x = pd.ExcelFile(path) sheets = x.sheet_names table = x.parse(sheets[0], header=2) # take line 2 as column