As usual we can save output file use syntax like this
write.csv(sst, file = "new_sst.csv", row.names = TRUE, sep = ',', col.names = TRUE)
then the result is new_sst.csv in our directory
My question is how can we define free name using file.choose() to save the output file in our directory. I mean if we've done the same process to save different file input and file output so we don't need write the syntax several times.