R to table execute failed in Could not parse REXP

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)

image

2 Likes