When I call the dput()
function on my df
data frame I am presented with multiple classes.
df %>% dput()
#> ...
#> class = c("tbl_df", "tbl", "data.frame")
#> ...
How do I transform this data frame into a single class? I would get something like this I imagine:
df %>% dput()
#> ...
#> class = "data.frame"
#> ...
I'm having a separate issue and I suspect this (multiple classes in a date frame) may be a contributing factor.