1
我正在用python(matplotlib)繪製下圖。如何在python中繪製方格網格(ggplot in R)
我可以通過下面的代碼來做到這一點的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()
我不能按季節柱。也無法繪製迴歸線。有人能幫我做這些嗎?
[python-ggplot](http://ggplot.yhathq.com/)呢? –
我正在運行anaconda ipython。無法安裝軟件包。 – haimen
你使用熊貓數據框嗎? – kazemakase