Re: [R] sendmailR-package-valid code needed

2010-08-23 Thread Velappan Periasamy
Hello Chris Campbell , I tried this for my email id it give me errors > from <- sprintf("", Sys.info()[4]) > to <- "< veepsi...@gmail.com>" > subject <- "Hello from R" > msg <- "It works!" > sendmail(from, to, subject, msg,control=list(smtpServer="ASPMX.L.GOOGLE.COM")) Error in waitFor(code) :

[R] Cran-packages-ProfessoR- how to Automatically email a file to an address using the perl program.

2010-08-23 Thread Velappan Periasamy
AutoEmail autoemail Description Automatically email a file to an address using the perl program. Usage autoemail(eadd, sfile, hnote = "Exam Results") Arguments eaddEmail address sfile file to be sent hnotesubject line Det

[R] sendmailR-package-valid code needed

2010-08-23 Thread Velappan Periasamy
## Not run: from <- sprintf("" subject <- "Hello from R" msg <- "It works!" sendmail(from, to, subject, msg, control=list(smtpServer="ASPMX.L.GOOGLE.COM")) ## End(Not run) the above commands are provided in this document ie http://cran.r-project.org/web/packages/sendmailR/sendmailR.pdf it is not

[R] Fwd: quantmod Example-google data download-problems

2010-08-07 Thread Velappan Periasamy
-- Forwarded message -- From: Velappan Periasamy Date: Sat, Aug 7, 2010 at 11:20 PM Subject: quantmod Example-google data download-problems To: r-sig-fina...@stat.math.ethz.ch getSymbols("YHOO",src="google") is working getSymbols("NSE:RCOM",src=&

[R] How to run this video link

2010-07-29 Thread Velappan Periasamy
Pls tell me how to run this video in R http://nptel.iitm.ac.in/video.php?courseId=1083&p=4 __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and

[R] How to get the closing price from the the GOOGLE FINANCE site for NSEINDIA stocks

2010-06-05 Thread Velappan Periasamy
Sir, How to get the closing price from this link http://www.google.com/finance/historical?q=NSE:RCOM I installed quantmod getSymbols('NSE:RCOM',src='google') gives me this error** Error in download.file(paste(google.URL, "q=", Symbols.name, "&startdate=", : cannot open

[R] Calculating the half-life for mean-reversion

2010-04-11 Thread Velappan Periasamy
How to compute the half-life of mean-reversion for GLD-GDX?. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, se

[R] Statistical test for cointegration-how

2010-04-10 Thread Velappan Periasamy
How to find out if GLD-GDX is cointegrating. post the R codes. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal,

[R] Statistical test for stationarity-how

2010-04-10 Thread Velappan Periasamy
How to find out if EURGBP is stationary? Post the R codes for the same. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented,

[R] How to open gmail accounts

2010-02-06 Thread Velappan Periasamy
How to open two gmail accounts with different log in name and password with in R?. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide

Re: [R] Data import export zipped files from URLs

2010-01-23 Thread Velappan Periasamy
http://nseindia.com/content/equities/scripvol/datafiles/01-01-2010-TO-23-01-2010RCOMXN.csv the url is correct. it is not zipped file. copy the url in the browser window you will get the this .. Symbol,Series,Date, Prev Close,Open Price,High Price,Low Price,Last Price,Close Price,Average Pr

Re: [R] Data import export zipped files from URLs

2010-01-23 Thread Velappan Periasamy
The same link works and dowloads data while copying and pasteing the link in firebox address box. the file is there and the server is active. __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting gu

Re: [R] Data import export zipped files from URLs

2010-01-23 Thread Velappan Periasamy
wrote: > Try this: > > f <- tempfile() > download.file("http://nseindia.com/content/historical/EQUITIES/2010/JAN/cm15JAN2010bhav.csv.zip";, > f) > myData <- read.csv(unzip(f)) > > On Tue, Jan 19, 2010 at 2:56 PM, Velappan Periasamy > wrote: >> How t

Re: [R] Data import export zipped files from URLs

2010-01-19 Thread Velappan Periasamy
How to unzip this file?. > mydata <- > unzip("http://nseindia.com/content/historical/EQUITIES/2010/JAN/cm15JAN2010bhav.csv.zip";) Warning message: In unzip("http://nseindia.com/content/historical/EQUITIES/2010/JAN/cm15JAN2010bhav.csv.zip";) : error 1 in extracting from zip file >

[R] Data import export zipped files from URLs

2010-01-18 Thread Velappan Periasamy
I am not able to import zipped files from the following link. How to get thw same in to R?. mydata <- read.csv("http://nseindia.com/content/historical/EQUITIES/2010/JAN/cm15JAN2010bhav.csv.zip";) __ R-help@r-project.org mailing list https://stat.ethz.ch