url2data | R Documentation |
Call 'download.file' with each element of a vector of character strings assumed to be URLs, create a local copy for each, and return a character matrix summarizing what was done.
url2data(url.)
url. |
a vector of character strings assumed to be URLs, whose names are assumed to be the names to be used for local copies of the URLs. |
1. fili <- names(urls.)
2. dati <- fili
without its extension, i.e., the part
following the last '.'
3. for(i in 1:length(url.)try(download.file(url.[i], fili[i]));
found[i] = TRUE
if something found and FALSE if not.
4. Return a character matrix with 4 columns: data = dati, file = fili, url = url., and found.
# See ~R\library\FinTS\scripts\TsayFiles.R
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.