In our last post, we covered the introduction to web scraping, why do we need it, and the process of web scraping. In this post, we will look at the python library which is used for scraping and also write our first scraping code. We are going to perform web scraping for Premier League Table 2019-20 […]
Tag Archives: coding
Pandas .loc v/s .iloc v/s .at v/s .iat v/s .ix
When I started working with pandas I oftenly used the square brackets [ ] for accessing rows and columns of a data frame. But as time passed, I had to get rid of this as things started to become more complicated and python suggested no longer use them but instead go for .loc, .iloc, .at, .iat, or .ix. […]