Closed jadedaws closed 4 years ago
cannot write dataframe as .csv because there are lists and they cannot be written into .csv file structure. anyone know how to get around this? do we need the data contained in the lists for what we're trying to accomplish?
Perhaps try to save it as a .RDS using saveRDS(). This will save it as an R-Object. It can be restored/read using readRDS(). https://www.rdocumentation.org/packages/base/versions/3.6.2/topics/readRDS
cannot write dataframe as .csv because there are lists and they cannot be written into .csv file structure. anyone know how to get around this? do we need the data contained in the lists for what we're trying to accomplish?