Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in R Programming by (19k points)

I’m trying to execute this line on R

download.file(link_addr,destfile = ".DA/cameras.csv")

and I end up with this error:

Error in grep("\\.(gz|bz2|xz|tgz|zip|rda|RData)$", url) : 

  object 'link_addr' not found

1 Answer

0 votes
by (33.1k points)
You should simply change your link_addr to linkAddr and it should work. It’s a good practice to not use Special character as variable names.

Browse Categories

...