April 2024
Beginner to intermediate
500 pages
24h 20m
English
In the previous sections, we showed how to explicitly read files line by line, and how to extract a column’s data value as a list. This was important to illustrate for educational purposes. In practice, though, professionals (like data scientists) using large data sets typically use a Python package called pandas to read and manipulate data. In this section, we will discuss how to use the popular pandas library to do what we just did in the previous sections. If you are working with Jupyter Notebook, you already have pandas installed. If not, you may want to install pandas (see Appendix A for instructions).
Pandas stores data in a two-dimensional tabular form called ...
Read now
Unlock full access