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

——
Edit: KNIME and R — installation across operating systems — some remarks | by Markus Lauber | Low Code for Data Science | Medium

2 Likes