Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
835 views
in Technique[技术] by (71.8m points)

export - Permission denied when exporting to CSV in R

Here is the code I tried, I tried to ways. Basically I'm just wondering about the permission denied part.

 data <- matrix(c(1,2,3,4), ncol=2)
 write.csv(data,"C:/Users/brian_000/Documents")

Error:

Error in file(file, ifelse(append, "a", "w")) : 
  cannot open the connection
 In addition: Warning message:
 In file(file, ifelse(append, "a", "w")) :
   cannot open file 'C:/Users/brian_000/Documents': Permission denied
   write.csv(data, file="C:/Users/brian_000/Documents")
  Error in file(file, ifelse(append, "a", "w")) : 
 cannot open the connection
 In addition: Warning message:
 In file(file, ifelse(append, "a", "w")) :
  cannot open file 'C:/Users/brian_000/Documents': Permission denied
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

C:/Users/brian_000/Documents is (presumably) a directory, so you can't write to it like it is a file. Instead, write to a file like C:/Users/brian_000/Documents/myfile.csv.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...