Pandas - Python library.
Pandas Pandas is open source python library . Used for data analysis . Also helpful in data mungling . Data Mungling - Combination of data cleaning, data manipulation, and data understanding we call it as data munging. How to install pandas. Type pip install pandas in your cmd. If you are using anaconda (it is a python distribution) in this the pandas is already installed. To check the pandas version We import pandas as import pandas as pd. Type - pd.__version__ Basic pandas function you should know. pd.read_csv - To read csv file. pd.head() - to print top 5 line. pd.tail() - to print last 5 line. pd.describe() - to describe the dataset. pd.info() - to check the complete info about the dataset. pd.shape - It's a attribute, help to know shape of dataset pd.shape[0] - print number of rows. pd.shape[1] - print number of columns. pd.columns - It will print all the columns name. pd.column_name - The column_name that you want will be selected. pd['column_name'] - Sa...