我正在寻找当前设置的 y 轴限制的快速代码,如下所示
# Set the Y Axis Limits
ax.set_ylim(0,100)
我希望根据我们的数据点将 100 换成可变/可调整的 y 水平,如下所示:
import pandas as pd
import matplotlib.pyplot as plt
s = pd.Series(
[8, 24, 21, 23, 24],
index = ["Your Plan", "Benchmark", "Region", "Industry", "Size"]
)
我想应该是一个快速修复。