gpt4 book ai didi

python - 如何让 stat_smooth 在 ggplot-python 中工作?

转载 作者:太空宇宙 更新时间:2023-11-03 11:30:53 30 4
gpt4 key购买 nike

这是我的代码:

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)

这是代码生成的内容:

result http://zduniak.net/wV9S6

历史表有 3 列:

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

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

最佳答案

关于python - 如何让 stat_smooth 在 ggplot-python 中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20427050/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com