在matplotlib中将y轴设置为从0到100 [重复]
Posted
技术标签:
【中文标题】在matplotlib中将y轴设置为从0到100 [重复]【英文标题】:Set y a-xis to trange from 0 to 100 in matplotlib [duplicate] 【发布时间】:2020-10-12 05:51:41 【问题描述】:如何将我的 y 轴设置在 0 到 100 之间?这是我的代码:
fig, ax = plt.subplots()
plt.plot(history.history['accuracy'], marker="*", label='Train accuracy', color='blue')
plt.plot(history.history['val_accuracy'], marker="o", label='Test accuracy', color='red')
plt.title('Plot' )
plt.ylabel('yaxis')
plt.xlabel('xaxis')
plt.legend(loc='best')
plt.show()
【问题讨论】:
【参考方案1】:一种方法是使用ylim
,如:
...
plt.xlabel('xaxis')
plt.legend(loc='best')
plt.ylim(0,100). # <== This is the relevant piece.
plt.show()
【讨论】:
以上是关于在matplotlib中将y轴设置为从0到100 [重复]的主要内容,如果未能解决你的问题,请参考以下文章