以df显示星期几频率的图表

问题描述 投票:1回答:1

我有一个显示点击次数和访问者的网络日志,无法根据该格式的数据框绘制一周中几天的频率:

                      date
0      2017-06-03 00:07:04
1      2017-06-03 00:07:06
2      2017-06-03 00:07:07
3      2017-06-03 00:07:24
4      2017-06-03 00:07:38

我试过这个:

Date_df = pd.DataFrame(dataset.date)

dates = pd.date_range('2017-06-01','2017-06-07', freq='D')
dates_count = Date_df.groupby(Date_df.date).count()['date']
dates_day_count = pd.DataFrame(dates_count)
dates_day_count = dates_day_count.rename(columns={"date":"Counts"})
dates_day_count.index.rename('date', inplace = True)
dates_day_count.tail()

但显示“KeyError: 'date'

我想知道网站最忙的那一天(最频繁的一天中的小时),有人吗?

python plot time-series
1个回答
0
投票

我认为需要Series.value_countsdt.datedt.hour

print (Date_df)
                 date
0 2017-06-03 00:07:04
1 2017-06-03 00:07:06
2 2017-06-04 00:07:07
3 2017-06-04 00:07:24
4 2017-06-04 00:07:38

dates_day_count = Date_df['date'].dt.date.value_counts().reset_index()
dates_day_count.columns = ['date','counts']
print (dates_day_count)
         date  counts
0  2017-06-04       3
1  2017-06-03       2

如果想要情节dates可能使用:

dates_day_count = Date_df['date'].dt.date.value_counts()
dates_day_count.plot.bar()

而对于hours

dates_day_count = Date_df['date'].dt.hour.value_counts()
dates_day_count.plot.bar()

如果需要一些组合,例如几小时的日期使用strftimehttp://strftime.org/

dates_day_count = Date_df['date'].dt.strftime('%Y-%m-%d %H').value_counts()
© www.soinside.com 2019 - 2024. All rights reserved.