How to fill in an online form and get results back in R

后端 未结 4 1551
臣服心动
臣服心动 2021-02-03 11:33

Has anyone ever filled in a web form remotely from R?

I\'d like to do some archery statistics in R using my scores. There is a very handy webpage, that gives you the cla

4条回答
  •  遥遥无期
    2021-02-03 12:04

    this might not help you, as I am searching for an answer to a similar problem, but looking at the URL you would like to scrape, the forms to fill are actuall HTML Forms, and you can get the description by:

    url <- "http://www.archersmate.co.uk/"
    forms <- getHTMLFormDescription(url)
    

    Also look at the package "RHTMLForms" on omegahat.org

提交回复
热议问题