R - 从 HTML table 中读取数据

R - Read data from HTML table

我正在尝试执行书中的示例 "Practical Data Science Cookbook" 代码如下:

year <- 2013

#Acquire offense data
  url <- paste("http://sports.yahoo.com/nfl/stats/byteam?  group=Offense&cat=Total&conference=NFL&year=season_",
         year,"&sort=530&old_category=Total&old_group=Offense")

offense <- readHTMLTable(url, encoding = "UTF-8", colClasses="character")[[7]]

出现错误:

Error in UseMethod("xmlNamespaceDefinitions") : 
 no applicable method for 'xmlNamespaceDefinitions' applied to an object of class "NULL"

请帮忙

解决问题需要配置http代理。 在 Windows 桌面上编辑 R-Studio 快捷方式,在 R-Studio 名称后添加 代理定义

 http_proxy=http://user_id:passwod@your_proxy:your_port/

来源:Proxy settings for R