2022年中国会计视野论坛答疑总结
目录
今天,有同事让生成下 2022 年陈版主答疑汇编,好的,安排。
既然生成了答疑汇编也做一个小小的总结。
(注:以下分析仅依据记录 cpa 业务探讨版块版主回答的帖子)
全年话题数及回答数
-- 回答数
select count(*) from chenyiwei_bbs where year(comment_time)=2022;
-- 话题数
select count(distinct link) from chenyiwei_bbs where year(comment_time)=2022;
全年回答了 5086 个话题,共计 6286 次回复。
回答数量月度分布
select month(comment_time) 月份,count(*) 回答数量
from chenyiwei_bbs
where year(comment_time)=2022
group by month(comment_time)
order by month(comment_time)
月份 | 回答数量 |
---|---|
1 | 513 |
2 | 339 |
3 | 662 |
4 | 557 |
5 | 470 |
6 | 486 |
7 | 583 |
8 | 477 |
9 | 574 |
10 | 512 |
11 | 547 |
12 | 566 |
回答数量小时分布
这里我们分别按提问时间和回答时间统计各小时区间的数量:
-- 回答小时分布
select hour(comment_time) 小时,count(*) 回答数量 from chenyiwei_bbs where year(comment_time)=2022
group by hour(comment_time)
order by hour(comment_time)
-- 提问小时分布
select hour(question_time) 小时,count(*) 提问数量 from chenyiwei_bbs where year(comment_time)=2022
group by hour(question_time)
order by hour(question_time)
小时 | 回答数量 | 提问数量 |
---|---|---|
0 | 141 | 89 |
1 | 174 | 45 |
2 | 278 | 16 |
3 | 281 | 6 |
4 | 374 | 3 |
5 | 262 | 2 |
6 | 164 | 28 |
7 | 39 | 29 |
8 | 14 | 140 |
9 | 93 | 403 |
10 | 341 | 654 |
11 | 475 | 535 |
12 | 343 | 272 |
13 | 191 | 285 |
14 | 352 | 474 |
15 | 492 | 501 |
16 | 528 | 583 |
17 | 477 | 514 |
18 | 337 | 310 |
19 | 226 | 245 |
20 | 165 | 315 |
21 | 151 | 304 |
22 | 152 | 308 |
23 | 236 | 225 |
通过提问人和回答人的小时分布对比就知道和大佬之间的差距。
回答数量最多日期TOP5
select date_format(comment_time,'%Y-%m-%d') 日期,count(*) 回答数量
from chenyiwei_bbs where year(comment_time)=2022
group by date_format(comment_time,'%Y-%m-%d')
order by count(*) desc limit 5;
日期 | 回答数量 |
---|---|
2022-06-30 | 67 |
2022-02-22 | 54 |
2022-11-27 | 51 |
2022-12-22 | 51 |
2022-11-15 | 51 |
630亮了
工作天数
select count(distinct(date_format(comment_time,'%Y-%m-%d'))) 日期
from chenyiwei_bbs where year(comment_time)=2022
全年回贴共计 271 天,要知道 2022 年也就 248 个工作日。
提问最多Top5
select question_author 提问人,count(*) 对话数 from chenyiwei_bbs
where year(comment_time)=2022
group by question_author
order by count(*) desc
limit 5;
提问人 | 对话数 |
---|---|
liuweisheng | 213 |
Ryan_q | 87 |
yjhly2011 | 56 |
zhs7403 | 43 |
天之蓝2022 | 42 |
其实能思考提出这么多问题的也是大佬。
热门提问词汇
查询出全年提问标题:
select distinct(title) from chenyiwei_bbs
where year(comment_time)=2022
导出成 txt 文件,并用 Python 进行分词,取频率前 200 词汇绘制词云图。
读完数据,只有佩服。
下载地址:
https://wwds.lanzoum.com/b01nyhiod
密码:1mki