axe pandas flip x et y

# You can transpose the dataframe
df = pd.DataFrame(data)
df = df.T
# or 
df.transpose()
Av3