作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 pm2_5 数据框数据,我使用 matplotlib 散点图
绘制了这些数据。我想在不同的 y 值 处插入多条水平线,我通过为 y 的每个不同值手动调用 '''ax.axhline''' 函数来实现。有什么方法可以使整个过程自动化?
# making a graph with delineated health levels of pm2.5 in the year 2015
fig, ax=plt.subplots(figsize=(10,7));
pm2_5.plot(kind='scatter',x='S_no',y='pm2_5',c='pm2_5',ax=ax, cmap='tab20b');
ax.axhline(y=150,linestyle ='--')
ax.axhline(y=100,linestyle ='--')
ax.axhline(y=200,linestyle ='--')
ax.axhline(y=300,linestyle ='--')
最佳答案
您可以使用列表理解:
[ax.axhline(y=i, linestyle='--') for i in [150,100,200,300]]
关于matplotlib - 有没有办法在 matplotlib 的单个图中使用 hlines() 函数绘制多条水平线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61347471/
我是一名优秀的程序员,十分优秀!