Pandas Assignment
Pandas Assignment
Pandas
By Pankaj Kumar (8632)
AND Rahul Kumar (8651)
Introduction to pandas 🐼
1. pandas.DataFrame
2. We use pandas.DataFrame() to create a DataFrame in pandas.
2. DataFrame.mean()
For the median or mode value, replace mean() with median() or mode().
3. Dataframe.info
The info() function is an essential pandas operation. It returns the summary
of non-missing values for each column.
4. DataFrame.describe
The describe() function gives you the summary statistic of a DataFrame:
5. DataFrame.replace
Using the DataFrame.replace() method in pandas, you can replace selected
rows with other values.
Pandas Data Structure
And their Examples
Thank You