library(dplyr) ##activates the data.table library
mydataWithWeeksAndWeights <- data_frame(ended = c("14/11/2016",
"14/11/2016",
"14/11/2016",
"02/01/2017",
"02/01/2017",
"15/11/2017",
"15/11/2017",
"16/11/2017",
"16/11/2017"),
week = c(46, 46, 46, 1, 1, 46, 46, 46, 46),
satisfactionLevel = c("Very dissatisfied",
"Very satisfied",
"Satisfied",
"Dissatisfied",
"Very dissatisfied",
"Very satisfied",
"Very dissatisfied",
"Very Satisfied",
"Very satisfied"),
weight = c(0, 1, 0.75, 0.25, 0, 1, 0, 1, 1))
에서 나는 GROUP_BY를 (사용 중복 된 항목)을 유지합니다. 문제는 처음 세 줄의 46 번째 주가 2016을 가리키고 나머지는 2017을 지칭한다는 것입니다.이 중복 항목을 유지하고 싶습니다.는 dplyr
mydataWithWeeksAndWeights %> % group_by (주, 가중치) %> % 필터 (n()> 1)' – akrun
년을 구별하고 싶습니다. "% d/% m/% Y", "% Y- % W"), 중량) %> % count (satisfactionLevel)' –
@docendodiscimus 전설 !!! 건배 – Greconomist