Hey #RStats, I am cannot get around this issue with base `summary()` converting a date variable into numeric on its output when it called inside a `sapply()`. Any ideas? Example Code: gist.github.com/jesadrperez/…
1
2
1
Replying to @adriaaaaaaan
It's the final coercion that does it: somewhat known and documented fact that the S3 class object gets dropped by #rstats. You can assemble proper (one row) data.frame objects (that you can then `rbind`), or you can avoid fate by going to character. Inject some `print` to see.

Jan 24, 2023 · 8:09 PM UTC

1
2
6
Replying to @eddelbuettel
Thank you for this and Rocker!
1