4

那是我的代码:

import pandas as pd
import pandas.io.sql as sqlio
from ggplot import *
from db import conn

sql = "SELECT * FROM history WHERE time > (NOW() - INTERVAL '1 day')::date"
df = sqlio.read_frame(sql, conn)
conn.close()

lng = pd.melt(df[['time', 'players', 'servers']], id_vars='time')
plt = ggplot(aes(x='time', y='value', colour='variable'), data=lng) + \
        geom_line() + \
        stat_smooth(colour='red', se=True) + \
        ggtitle('Players and servers online over last 24h') + \
        xlab("Time of the day") + \
        ylab("Amount")
ggsave(filename="day.svg", plot=plt)

这是代码生成的:

结果 http://zduniak.net/wV9S6

历史表有 3 列:

  • 时间 - 日期时间
  • 玩家 - 整数
  • 服务器 - 整数

我想要的是在黑色和橙色线条上绘制两条平滑的红线。不知何故 stat_smooth 根本不起作用。我怎样才能让它工作?

4

1 回答 1

2

Should be fixed as per these issues:

https://github.com/yhat/ggplot/pull/43

https://github.com/yhat/ggplot/pull/170

于 2014-05-20T18:24:47.850 回答