group_by 对mutate,summary里的基础函数的适用情况
摘要:
group_by的价值在于对 从对整个数据框的数据处理,转换为对每个组内的数据处理。 如:> not_cancelled %>%group_by(year,month,day)%>%filter(rank(desc(arr_delay))<=10) %>% select(month,year,day 阅读全文
posted @ 2021-12-18 22:19 BioinformaticsMaster 阅读(272) 评论(0) 推荐(0) 编辑