-
Book Overview & Buying
-
Table Of Contents
Network Science with Python
By :
There are a number of useful libraries for working with data, and you will want to use different libraries and techniques at different points of the data life cycle. For instance, in working with data, it is often useful to start with Exploratory Data Analysis (EDA). Later on, you will want to do cleanup, wrangling, various transformations for preprocessing, and so on. Here are some of the available Python libraries and their uses.
pandas is easily one of the most important libraries to use when doing anything with data in Python. Put simply, if you work with data in Python, you should know about pandas, and you should probably be using it. You can use it for several different things when working with data, such as the following:
If there is one Python...