I guess, you are looking for:
?file.remove
Am 20.03.2010 20:36, schrieb Megh:
Is there any R function to delete a CSV file saved in disk? For example here
I have created following R function :
asd<- function(a = 5) {
dat<- read.delim(file="F:/Test.csv", header=T, sep=",")
res<- dat[1,
Is there any R function to delete a CSV file saved in disk? For example here
I have created following R function :
asd <- function(a = 5) {
dat <- read.delim(file="F:/Test.csv", header=T, sep=",")
res <- dat[1,1]*a
# Here I want to delete "Test.csv"
return(res)
}
Here I am l
2 matches
Mail list logo