Re: [問題] 指定group

作者: celestialgod (天)   2015-08-16 08:51:27
我不知道這樣有沒有快多少... 參考看看
library(data.table) # setnames
library(plyr) # dlply, laply, mapvalues
library(dplyr) # mutate, summarise, group_by
library(magrittr) # %>%, %$%
dt <- data.table(
series = c(1,2,3,4,5,6,1,1,2,2,2,2,2),
cate = c(2,3,4,2,2,5,1,2,2,3,4,4,4)
)
## method 1 (應該會較慢,而且程式比較醜)
maptable = dlply(dt, .(series), table) %>% laply(function(x){
as.integer(colnames(x)[which.max(x)])
}) %>% cbind(as.integer(names(.)), .)
dt2 = dt %>% mutate(cate = mapvalues(series, maptable[,1], maptable[,2]))
## method 2
-maptable = dt %>% group_by(series, cate) %>% summarise(n()) %>%
group_by(series) %>% summarise(maxCate = max(cate))
dt2 = dt %>% mutate(cate = mapvalues(series, maptable$series,
maptable$maxCate))
## 把上面連在一起的版本 (沒有maptable這個暫存變數)
dt2 = dt %>% group_by(series, cate) %>% summarise(n()) %>%
group_by(series) %>% summarise(maxCate = max(cate)) %>%
setnames("series", "maxSeries") %$%
mutate(dt, cate = mapvalues(series, maxSeries, maxCate))
: 例如
: series cate
: [1,] 1 2
: [2,] 2 3
: [3,] 3 4
: [4,] 4 2
: [5,] 5 2
: [6,] 6 5
: [7,] 1 1
: [8,] 1 2
: [9,] 2 2
: [10,] 2 3
: [11,] 2 4
: [12,] 2 4
: [13,] 2 4
: 在series中1出現三次,其cate分別為2,2,1 頻率最高的為2
: 想將所有series為1的族群 其cate欄位接指定為2
: 又例如 series中為2的族群 其cate 分別為 3,2,3,4,4,4 頻率最高的4
: 想將所有series為2的族群 其cate欄位皆指定為4
: 請問除了用for loop外有其他方法嗎?
作者: lambking (BB)   2015-08-16 18:17:00
謝謝你! 有快很多另外想請問如果是series中有missing data能針對missing data 保留其原本cate 值嗎謝謝! 了解了!但在實際執行時 會出現以下錯誤訊息Error in n() : This function should not be calleddirectly查到是因為plyr 和dplyr皆有summarise功能謝謝, 但改完之後反而出現setnames的問題Error in setnames(., "series", "maxSeries") :Items of 'old' not found in column names: series請問你用的是哪一個版本呢? 謝謝謝謝 我再試試看另外想請問如果series 和 cate 都是 character

Links booklink

Contact Us: admin [ a t ] ucptt.com