Following the example provided on : https://blog.exploratory.io/analyzing-mrr-monthly-recurring-revenue-using-stripe-data-in-r-and-exploratory-ea434d4aed6
mutate(recurring_month = list(seq(from=created, by = “month”, length.out = 12)))
When I try to apply the ‘unnest’ on a list of dates, an error occurred :
Each column must either be a list of vectors or a list of data frames [recurring_month]
I did the same with another a list of integers and the ‘unnest’ works … maybe there’s something wrong with list of dates … or maybe I’m not doing on the right way ?