基于 r 中的聚合选择列
我有一个包含以下 5 个字符变量(出版商、平台、流派、评级、全球销售额)的数据框,我想对其进行过滤,以根据其全球销售额获得前 30 名出版商,所以最后,我想有一个包含 4 个变量和 30 条记录的表(发行商(前 30 名)、平台、流派、评级)。
I have a dataframe with the following 5 character variables (Publisher, Platform, Genre, Rating, Global Sales), i would like to fliter it to get the top 30 Publishers based on their global sales, so in the end, i would like to have a table with 4 variables and 30 records ( Publisher (top 30), Platform, Genre, Rating).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了方便和易读,使用 {dplyr} 和管道运算符:
using {dplyr} and the pipe operator for convenience and legibility: