This is the table I'm trying to clear from online to R
What happens when I run the following code, the first row of the table is truncated, for example, the table starts with Justin Tucker instead of Stephen Gotzkowski.
library(XML)
kicker_1<- paste("http://www.nfl.com/stats/categorystats?archive=false&conference=null&statisticPositionCategory=FIELD_GOAL_KICKER&season=2013&seasonType=REG&experience=&tabSeq=1&qualified=false&Submit=Go")
kickers_13<- readHTMLTable(kicker_1)
from this point, the first row of the table is disabled, is there something in my link that I need to fix?
source
share