One very brutal way is to convert your values all to string and deal with the list later.
# https://riptutorial.com/r/example/8815/convert-all-columns-of-a-data-frame-to-character-class
df[] <- lapply(df, as.character)
One very brutal way is to convert your values all to string and deal with the list later.
# https://riptutorial.com/r/example/8815/convert-all-columns-of-a-data-frame-to-character-class
df[] <- lapply(df, as.character)