R 对数据帧进行过滤和子集化
请就以下几点给我一些建议。
有一个三列的数据框,第一列是日期时间(精确到秒),第二列是人名,第三列是消息。
我想检索以下信息并绘制它们。
- 每人在某一分钟内的消息数。
- 某个人在某一分钟内的消息。
提前致谢。
Please give me some advice on the followings.
There is a data frame with three columns, the first one is a datetime(precise to seconds), the second one is a person's name, and the third one is a message.
I want to retrieve the following information and plot them.
- Messages per person during a certain minute.
- A certain person's messages during a certain minute.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
R 中有许多不同的日期格式。如果您对其中一种没有偏好,请使用
lubridate
包。一些示例数据:
选择一个有趣的时刻:
使用
subset
和table
来解决您的问题。There are lots of different date formats in R. If you haven't got a preference for one of them, then use the
lubridate
package.Some sample data:
Pick an interesting minute:
Use
subset
andtable
to solve your problems.