I want just Tibbles, but very often I end up with something terrible else. it looks like this:
p <- tibble (idiotic= c(1,2,3,4,5)) %>% mutate(ma=rollapply(.
[,1],2,mean,align='right',fill=NA))
and then I end up with a mess like this:
It's a nightmare. How do I get a simply tibble out of a messy data structure like this?