我有这样的数据:
data = {'Accuracies': [0.52,0.56,0.55,0.57], 'd Primes':[0.06, 0.12, 0.09,0.15]}
defe = pd.DataFrame(data, index= ['1400', "2000", "3000", "4000"])
我想用x轴上的索引和y轴上的精度绘制它。 但是我想将y值限制在0到1之间。
答案 0 :(得分:2)
如果我正确理解“我想将y值限制在0到1之间”,则非常简单:
ax = defe.plot.bar(stacked=True)
ax.set_ylim(0, 1)
或者只是
defe.plot.bar(stacked=True, ylim=(0,1))
答案 1 :(得分:1)
使用plotly的另一种解决方案,比起matplotlib,尤其是在悬停上,您将可以更多地自定义图形
import plotly.graph_objects as go
df_graph = defe[(defe['Accuracies']>= 0) & (defe['Accuracies']<= 1)]
fig = go.Figure(data=[
go.Bar(name='Accuracies', x=df_graph.index.values, y=df_graph['Accuracies'].values),
go.Bar(name='d Primes', x=df_graph.index.values, y=df_graph['d Primes'].values)
])
fig.update_layout(barmode='stack')
fig.show()