I'm having trouble with applying broom::tidy on zoo-objects which do not have column names.
Reproducible example
## Example from zoo::zoo reference manual:
z2 <- zoo::zoo(matrix(1:12, 4, 3), as.Date("2003-01-01 ") + 0:3)
broom::tidy(z2)
#> Error in colnames(ret)[1:ncol(x)] <- colnames(x): Ersetzung hat Länge 0
I'm having trouble with applying
broom::tidyon zoo-objects which do not have column names.Reproducible example