Mit folgendem Code:
import matplotlib
matplotlib.style.use('ggplot')
import matplotlib.pyplot as plt
import pandas as pd
df = pd.DataFrame({ 'celltype':["foo","bar","qux","woz"], 's1':[5,9,1,7], 's2':[12,90,13,87]})
df = df[["celltype","s1","s2"]]
df.set_index(["celltype"],inplace=True)
df.plot(kind='bar',alpha=0.75)
plt.xlabel("")
Ich habe diese Handlung gemacht:
Wie kann ich die Tick-Beschriftungen der x-Achse um 0 Grad drehen?
Ich habe versucht, dies hinzuzufügen, aber es hat nicht funktioniert:
plt.set_xticklabels(df.index,rotation=90)
quelle
rot
durchxrot
oderyrot