0
我正在繪製一系列針對時間的指標,並使用facet_grid
功能分別在一個對象上繪製每週圖。face_grid和ggplot - 顏色/顏色參數錯誤
result_df
:
week metric_a time_stamp
20 2567 2015-09-30 09:04:29
21 3567 2015-10-03 17:36:39
22 3455 2015-10-11 19:29:32
p = ggplot(aes(x='time_stamp',y='metric_a'),data=result_df) + scale_x_date(labels = date_format("%H:%M")) + geom_line() + facet_grid('week',scales='free_x')
我現在希望用color
參數來說明周之間的變化。
p = ggplot(aes(x='time_stamp',y='metric_a',color="week"),data=result_df) + scale_x_date(labels = date_format("%H:%M")) + geom_line() + facet_grid('week',scales='free_x')
然而,這將返回:
row, col = self.facets.facet_map[rowname]
爲什麼這是對色彩的說法,而不是facet_grid
爭論的一個問題?
不知道你是如何從蟒蛇訪問GGPLOT2。這是使用Rpy2嗎? –
@感謝Mike。有一個python庫 - 「http://ggplot.yhathq.com /' – LearningSlowly