[R] RHTMLForms Package

2010-01-03 Thread Ron_M

Can anyone tell me from where to download the package RHTMLForms ? CRAN
seems not holding this anymore. I am using Windows Vista OS.

Thanks
-- 
View this message in context: 
http://n4.nabble.com/RHTMLForms-Package-tp997672p997672.html
Sent from the R help mailing list archive at Nabble.com.

__
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, self-contained, reproducible code.


Re: [R] RHTMLForms Package

2010-01-03 Thread Prof Brian Ripley

On Sun, 3 Jan 2010, Ron_M wrote:


Can anyone tell me from where to download the package RHTMLForms ? CRAN
seems not holding this anymore. I am using Windows Vista OS.


It never did: it is an Omegahat package, see 
http://www.omegahat.org/RHTMLForms/.


(I don't understand why a Google search on RHTMLForms did not get you
to Omegahat.)

As far as I know it is available as source only, so you need to do
(untested) something like

install.packages(c(RCurl, XML))
# dependencies for which binaries are available on CRANextras
options(pkgType=source)
setRepositories() # select Omegahat
install.packages('RHTMLForms')

assuming a current version of R.

--
Brian D. Ripley,  rip...@stats.ox.ac.uk
Professor of Applied Statistics,  http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel:  +44 1865 272861 (self)
1 South Parks Road, +44 1865 272866 (PA)
Oxford OX1 3TG, UKFax:  +44 1865 272595

__
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, self-contained, reproducible code.