Skip to content
Prev 244133 / 398506 Next

Downloading a .csv through a .jsp url with variable parameters - R code or package?

Something like this should work, only Sept has 30 days, not 31:
+             , format(files, "%Y")
+             , "&m="
+             , format(files, "%m")
+             , "&d="
+             , format(files, "%d")
+             , sep = ""
+             )
[1] ".....jsp?y=2008&m=09&d=30" ".....jsp?y=2008&m=10&d=01"
[3] ".....jsp?y=2008&m=10&d=02" ".....jsp?y=2008&m=10&d=03"
[5] ".....jsp?y=2008&m=10&d=04" ".....jsp?y=2008&m=10&d=05"

        
On Mon, Dec 6, 2010 at 8:18 PM, Arsenio Staer <arsenio.staer at gmail.com> wrote: