Is there any package for R that allows querying Wikipedia (most probably using Mediawiki API) to get list of available articles relevant to such query, as well as import selected articles for text mining?

link|improve this question
You might find the following useful: ragtag.info/2011/feb/10/processing-every-wikipedia-article – James May 23 '11 at 10:57
feedback

2 Answers

up vote 2 down vote accepted

Use the RCurl package for retreiving info, and the XML or RJSONIO packages for parsing the response.

If you are behind a proxy, set your options.

opts <- list(
  proxy = "136.233.91.120", 
  proxyusername = "mydomain\\myusername", 
  proxypassword = 'whatever', 
  proxyport = 8080
)

Use the getForm function to access the API.

search_example <- getForm(
  "http://en.wikipedia.org/w/api.php", 
  action  = "opensearch", 
  search  = "Te", 
  format  = "json",
  .opts   = opts
)

Parse the results.

fromJSON(rawToChar(search_example))
link|improve this answer
I'm having problems with using this for some search terms, but I suspect it is an issue with the network I'm on. I need volunteers to check the sample code with different strings in the search parameter. – Richie Cotton May 23 '11 at 13:43
feedback

You could use an R-to-Python bridge and try it that way?

http://www.omegahat.org/RSPython/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.