如何从 R 访问维基百科?
R 是否有任何包允许查询维基百科(最有可能使用 Mediawiki API)来获取与此类查询相关的可用文章列表,以及导入选定的文章以进行文本挖掘?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有
WikipediR
,'R 中的 MediaWiki API 包装器'它包括这些功能:
这里正在使用,获取一堆用户的贡献详细信息和用户详细信息:
There is
WikipediR
, 'A MediaWiki API wrapper in R'It includes these functions:
Here it is in use, getting the contribution details and user details for a bunch of users:
使用 RCurl 包来检索信息,使用 XML 或 RJSONIO 包来解析响应。
如果您使用代理,请设置您的选项。
使用
getForm
函数访问API 。解析结果。
Use the
RCurl
package for retreiving info, and theXML
orRJSONIO
packages for parsing the response.If you are behind a proxy, set your options.
Use the
getForm
function to access the API.Parse the results.
一个新的伟大可能性是
wikifacts
包(在 CRAN 上):A new great possibility is the
wikifacts
package (on CRAN):