In the past, I have been able to use readHTMLTable in R to pull some football stats. When trying to do so again this year, the tables aren't showing up, even though they are visible on the webpage. Here is an example: http://www.pro-football-reference.com/boxscores/201609080den.htm
When I view the source for the page, the tables are all commented out (which I suspect is why readHTMLTable didn't find them).
Example: search for "team_stats" in source code...
<!--
<div class="table_outer_container">
<div class="overthrow table_container" id="div_team_stats">
<table class="stats_table" id="team_stats" data-cols-to- freeze=1><caption>Team Stats Table</caption>
Questions:
How can the table be commented out in the source yet display in the browser?
Is there a way to read the commented out tables using readHTMLTable (or some other method)?
gsub-out the<!--and-->?