August 2022
Beginner to intermediate
248 pages
6h 3m
English
Python provides access to a robust ecosystem of third-party libraries that you’ll find useful for data analysis and manipulation. This chapter introduces you to three of the more popular data science libraries: NumPy, pandas, and scikit-learn. As you’ll see, many data analysis applications use these libraries extensively, either explicitly or implicitly.
NumPy, or the Numeric Python library, is useful for working with arrays, which are data structures that store values of the same data type. Many other Python libraries that perform numerical computations rely on NumPy.
The NumPy array, a grid of elements ...