[R] postForm() in RCurl and library RHTMLForms

2012-12-02 Thread rahul143
Hi RUsers, Suppose I want to see the data on the website url <- "http://www.nseindia.com/content/indices/ind_histvalues.htm"; for the index "S&P CNX NIFTY" for dates "FromDate"="01-11-2010","ToDate"="02-11-2010" then read the html table from the page using readHTMLtable() I am using this

[R] postForm() in RCurl and library RHTMLForms

2012-12-02 Thread rahul143
Hi RUsers, Suppose I want to see the data on the website url <- "http://www.nseindia.com/content/indices/ind_histvalues.htm"; for the index "S&P CNX NIFTY" for dates "FromDate"="01-11-2010","ToDate"="02-11-2010" then read the html table from the page using readHTMLtable() I am using this

Re: [R] postForm() in RCurl and library RHTMLForms

2012-11-24 Thread veepsirtt
Why I am getting this error? Error in getHTMLFormDescription(docNifty)[[1]] : subscript out of bounds -- View this message in context: http://r.789695.n4.nabble.com/postForm-in-RCurl-and-library-RHTMLForms-tp3026742p4650636.html Sent from the R help mailing list archive at Nabble.com. __

Re: [R] postForm() in RCurl and library RHTMLForms

2012-10-17 Thread veepsirtt
Hi R Users, I want to get the data from the url given from 10/09/2012 to 15/10/2012. I don't know how to pass the parameters . ... library(RHTMLForms) > > ff = getHT

Re: [R] postForm() in RCurl and library RHTMLForms

2010-11-05 Thread Duncan Temple Lang
On 11/4/10 11:31 PM, sayan dasgupta wrote: > Thanks a lot thats exactly what I was looking for > > Just a quick question I agree the form gets submitted to the URL > "http://www.nseindia.com/marketinfo/indices/histdata/historicalindices.jsp"; > > and I am filling up the form in the page > "http

Re: [R] postForm() in RCurl and library RHTMLForms

2010-11-04 Thread sayan dasgupta
Thanks a lot thats exactly what I was looking for Just a quick question I agree the form gets submitted to the URL "http://www.nseindia.com/marketinfo/indices/histdata/historicalindices.jsp"; and I am filling up the form in the page "http://www.nseindia.com/content/indices/ind_histvalues.htm"; H

Re: [R] postForm() in RCurl and library RHTMLForms

2010-11-04 Thread Duncan Temple Lang
On 11/4/10 2:39 AM, sayan dasgupta wrote: > Hi RUsers, > > Suppose I want to see the data on the website > url <- "http://www.nseindia.com/content/indices/ind_histvalues.htm"; > > for the index "S&P CNX NIFTY" for > dates "FromDate"="01-11-2010","ToDate"="02-11-2010" > > then read the html tab

Re: [R] postForm() in RCurl and library RHTMLForms

2010-11-04 Thread Santosh Srinivas
I don’t have the implementation in the way you want it …. Sorry … but someone here will definitely know The group showed me to do it this way though …. library(zoo) library("RCurl") sNiftyURL = "http://nseindia.com/content/indices/histdata/S&P%20CNX%20NIFTY01-01-2000-02 -11-2010.csv" Nifty_Dat =

[R] postForm() in RCurl and library RHTMLForms

2010-11-04 Thread sayan dasgupta
Hi RUsers, Suppose I want to see the data on the website url <- "http://www.nseindia.com/content/indices/ind_histvalues.htm"; for the index "S&P CNX NIFTY" for dates "FromDate"="01-11-2010","ToDate"="02-11-2010" then read the html table from the page using readHTMLtable() I am using this code w