I am trying to get the grouped min and max of several columns using a for loop:
My data:
df <- data.frame(a=c(1:5, NA), b=c(6:10, NA), c=c(11:15, NA), group=c(1,1,1,2,2,2))
> df
   a  b  c group
1  1  6 11     1
2  2  7 12     1
3  3  8 13     1
4  4  9 14     2
5  5 10 15     2
6 NA NA NA     2
My attempt:
cols <- df %>% select(a,b) %>% names()
for(i in seq_along(cols)) {
  output <- df %>% dplyr::group_by(group) %>% 
             dplyr::summarise_(min=min(.dots=i, na.rm=T), max=max(.dots=i, na.rm=T))
  print(output)
}
Desired output for column a:
  group   min   max
  <dbl> <int> <int>
1     1     1     3
2     2     4     5
 
     
     
     
    