July 2018
Beginner to intermediate
146 pages
3h 39m
English
In the next few portions of the book, we are going to get our hands dirty by building the various kinds of recommender systems that were introduced in chapter one. However, before we do so, it is important that we know how to handle, manipulate, and analyze data efficiently in Python.
The datasets we'll be working with will be several megabytes in size. Historically, Python has never been well-known for its speed of execution. Therefore, analyzing such huge amounts of data using vanilla Python and the built-in data structures it provides us is simply impossible.
In this chapter, we're going to get ourselves acquainted with the pandas library, which aims to overcome the aforementioned limitations, ...
Read now
Unlock full access