- Navigate to The American Presidency Project approval page for President Donald Trump (http://www.presidency.ucsb.edu/data/popularity.php?pres=45). You should get a page that contains a time series plot with the data in a table directly following it:
- The read_html function is able to scrape tables off web pages and place their data into DataFrames. It works best with simple HTML tables and provides some useful parameters to select the exact table you desire in case there happen to be multiple tables on the same page. Let's go ahead and use read_html with its default values, which will return all the tables as DataFrames in ...