moodymudskipper / tb

IN ~PROGRESS my own take on `[.data.frame`
0 stars 0 forks source link

issue grouping by dates #21

Closed moodymudskipper closed 4 years ago

moodymudskipper commented 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, as.character(unique(x)), exclude = NULL)

at least in aggregate_tb, and see if idiom is used in other places

moodymudskipper commented 4 years ago

done