1. 程式人生 > >R語言 分組排名

R語言 分組排名

r語言 bubuko ble mut png tac lib package 技術分享

table如下

技術分享圖片

技術分享圖片

#加載包
library(dplyr)

#分組排名
tb_sz <- tb_03 %>% group_by(BU) %>% mutate(rank = rank(gross_profit*(-1)))
tb_xj <- tb_04 %>% group_by(BU) %>% mutate(rank = rank(compare))
#卸載包
detach("package:dplyr")

R語言 分組排名