Hi Folks, I am trying to get a group_by cumsum using:
R version 3.5.0 (2018-04-23) -- "Joy in Playing" Copyright (C) 2018 The R Foundation for Statistical Computing Platform: x86_64-apple-darwin15.6.0 (64-bit) Here is an example of a simple construct that is not working. m <- data.frame( id = rep(1:3, each=2), score = rep(c(6,3), each=3) ) m %>% group_by(id) %>% mutate(total = cumsum(score)) My output: # A tibble: 6 x 3 # Groups: id [3] id score total <int> <dbl> <dbl> 1 1 6 6 2 1 6 12 3 2 6 18 4 2 3 21 5 3 3 24 6 3 3 27 What am I missing? Thanks in advance. Regards, Sumit
______________________________________________ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.