search for: deacot2005

Displaying 5 results from an estimated 5 matches for "deacot2005".

2005 May 12
2
Batch mode problem: figure margins too large (code corrected for word wrap)
...e a program that works well in Rgui but that does not work in a batch file (Execution halted). Here's the code (it will work on your R, but you need internet access through R as it will download a table from a US gov site). #Code Start download.file("http://www.cftc.gov/files/dea/history/deacot2005.zip", "c:/deacot2005.zip", "internal", quiet = FALSE, mode = "wb",cacheOK = TRUE) unzipped<-zip.file.extract("c:/annual.txt", zipname = "deacot2005.zip") #Unzip data <-read.table(unzipped, header=TRUE, sep=',') windows(height=11,w...
2005 May 12
0
Batch mode problem: figure margins too large
...llo, I have a program that works well in Rgui but that does not work in a batch file (Execution halted) Here's the code (it will work on you side, but you need internet access through R as it will download a table from a US gov site) download.file("http://www.cftc.gov/files/dea/history/deacot2005.zip", "c:/deacot2005.zip", "internal", quiet = FALSE, mode = "wb",cacheOK = TRUE) unzipped<-zip.file.extract("c:/annual.txt", zipname = "deacot2005.zip") #Unzip data <-read.table(unzipped, header=TRUE, sep=',') #windows(h...
2005 May 12
0
RE: Batch mode problem: figure margins too large (aligned R code to the left)
...orks well in Rgui but that does not work in > a batch file (Execution halted) > > Here's the code (it will work on you side, but you need internet access > through R as it will download a table from a US gov site) > > download.file("http://www.cftc.gov/files/dea/history/deacot2005.zip", > "c:/deacot2005.zip", > "internal", quiet = FALSE, mode = "wb",cacheOK = TRUE) > unzipped<-zip.file.extract("c:/annual.txt", zipname = "deacot2005.zip") > #Unzip > data <-read.table(unzipped, header=TRUE, sep=',&...
2005 May 18
2
Why can't I download "window binary" zip packages
Hello there, I tried so many times to download windows binary zip package but it told me that I don't have the access to do so. It worked for me a few months ago. Please help me with it. Thank you Lisa Wang Msc. Princess Margaret Hospital Toronto , Canada tel: (416) 946 4501 ext.5201
2005 May 10
6
Does R have a command for sending emails?
Is there a way to have an R program send an email? Something like this: address <- 'abc at d.com' text <- 'This is the email body' send.email(address, text) Thanks. FS