import pandas as pd
import matplotlib.pyplot as plt
# get the data ... note the order ...
data = [4.77, 5.52, 5.93, 6.29, 6.0, 6.95, 7.7, 9.44, 10.94, 12.35, 13.45]
df = pd.DataFrame({'data':data})
# referse the dataframe
df = df[::-1]
# ... and plot ...
ax = df.plot(kind='bar',table=True, figsize=(8,4)) # bar plots are categorical
ax.xaxis.set_visible(False) # table heading and x-labels over-printing
plt.show()
2条答案
按热度按时间i1icjdpr1#
我会这么做
所以...
如果我们再逆转一次...
我们得到...
csga3l582#
我简单地使用:用途:
对于“x”轴,或者
对于“y”轴。没有改变的点阵顺序。
希望有帮助。