Closed moodymudskipper closed 4 years ago
grouping by date doesn't work because of factor(x, unique(x), exclude = NULL) which fails on dates, we should use :
factor(x, unique(x), exclude = NULL)
factor(x, as.character(unique(x)), exclude = NULL)
at least in aggregate_tb, and see if idiom is used in other places
done
grouping by date doesn't work because of
factor(x, unique(x), exclude = NULL)
which fails on dates, we should use :at least in aggregate_tb, and see if idiom is used in other places