我希望使用python(matplotlib)绘制下图。
我可以通过以下代码在R中执行此操作,
ggplot(delay.with.weather,
aes(x=pressure, y=dep.delay), na.rm = TRUE) + geom_point(na.rm = TRUE) +
facet_grid(season ~ ., scales="free") + stat_smooth(method=lm, na.rm = TRUE)
我的尝试如下,
plt.scatter(flights_combined.pressure,flights_combined.dep_delay)
plt.show()
我不能按季节列分组。也无法绘制回归线。有人可以帮我做这些吗?
答案 0 :(得分:1)