In this file i had learning about how to read the csv file from system and also from google search. Use of function like
- head()
- tail()
- dtypes
- describe()
- columnn
- slicing
- adding columns to our dataframe at the end or in between of dataframe
- Renaming the default indexes using list as index in Series function
- Concatination ,Multiplication and Addition of 2 dataframes
- Use of drop function to delete the column using axis=1 and rows using axis=0
- To make permanent delete in data frame we use "inplace=True" with drop function
- We can reset the indexes
- Convert the dictionary into dataframe
- Drop NaN value present in dataframe in column and rows
- Replacing NaN value with another value
- Ploting hostogram using plot()