79295482

Date: 2024-12-19 20:12:56
Score: 0.5
Natty:
Report link

Somthing like this?

relevant_months %>% 
  gather("month", "flag", -count) %>% 
  summarise(count = sum(count * (flag == "y")), .by = "month")
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: yuk