I would like to write a dataframe with the name of the dataframe passed to the write_csv
function. For example, I would normally do the following
iris %>% write_csv("iris.csv")
but I would like to not have to write the name of the file. I tried something like the following
iris %>% write_csv(paste0(., ".csv"))
but I think this will require something more like a quosure