Please help me with naive question (already googled, and tried a lot of variations, but failed): How save files with the variable in the file name for write.table in R? Scri
You can use also the following for data frames:
now<-format(Sys.time(), "%d-%m-%Y") csvFileName <- paste("Your_df_",now,".csv",sep="") write.csv(WKSH_Check, file=csvFileName)