I have a data frame called, Fail.
Fail
I would like to save Fail as a CSV in a location that the user selects. Below is some example code that I
You need not to use even the package "tcltk". You can simply do as shown below:
write.csv(x, file = "c:\\myname\\yourfile.csv", row.names = FALSE)
Give your path inspite of "c:\myname\yourfile.csv".