基于 r 中的聚合选择列

发布于 2025-01-09 20:18:45 字数 129 浏览 1 评论 0原文

我有一个包含以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪漫人生路 2025-01-16 20:18:45

为了方便和易读,使用 {dplyr} 和管道运算符:

df %>% 
    slice_max(`Global Sales`,  n=30) %>%
    select(-`Global Sales`)

using {dplyr} and the pipe operator for convenience and legibility:

df %>% 
    slice_max(`Global Sales`,  n=30) %>%
    select(-`Global Sales`)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文