I want to save each dataframe from list with its according names as .fst file. My list with dataframes is called tables. I tried to do this, but it didn't work:
lapply(write_fst(), tables)
How to do that? How to perform write_fst function to each dataframe in list?
You can try using
Map
-If the names of the list do not have extension (
.fst
) you can usepaste0
to add it.