I need the index column name and the value column name to be on the same level:
index name | values column name
My code:
df = pd.DataFrame.from_dict(aqi_val_dct, orient='index', columns=['Индекс качества воздуха (AQI)'])
df.index.name = 'Станция'
print(df)