Analyze Data 29

pandas-1. Series, reindex, isnull, notnull, fillna, drop, dropna, randn, describe, nan, value_counts, map, apply, concat

pandas It is a software library written for the Python programming language for data manipulation and analysis. In particular, it offers data structures and operations for manipulating numerical tables and time series. 1. Series One-dimensional array with values and index can be granted to each values. import pandas as pd sr=pd.Series([1000,2000,3000,4000],index=['aaa','bbb','ccc','ddd']) sr >>>..