Data Analysis and Visualization with Python | Set 2
Prerequisites : NumPy in Python, Data Analysis Visualization with Python | Set 1
1. Storing DataFrame in CSV Format :
Pandas provide to.csv('filename', index = "False|True") function to write DataFrame into a CSV file. Here filename is the name of the CSV file that you want to create and index tells that index (if Default) of DataFrame should be overwritten or not. If we set index = False then the index is not overwritten. By Default value of index is TRUE then index is overwritten.
Example :
import pandas as pd # assigning three series to s1, s2, s3 s1 = pd.Series([0, 4, 8]) s2 = pd.Series([1, 5, 9]) s3 = pd.Series([2, 6, 10]) # taking index and column values dframe = pd.DataFrame([s1, s2, s3]) # assign column name dframe.columns =['Geeks', 'For', 'Geeks'] # write data to csv file dframe.to_csv('geeksforgeeks.csv', index = False) dframe.to_csv('geeksforgeeks1.csv', index = True) |
Output :
geeksforgeeks1.csvgeeksforgeeks2.csv
![]()
2. Handling Missing Data
The Data Analysis Phase also comprises of the ability to handle the missing data from our dataset, and not so surprisingly Pandas live up to that expectation as well. This is where dropna and/or fillna methods comes into the play. While dealing with the missing data, you as a Data Analyst are either supposed to drop the column containing the NaN values (dropna method) or fill in the missing data with mean or mode of the whole column entry (fillna method), this decision is of great significance and depends upon the data and the affect would create in our results.
- Drop the missing Data :
Consider this is the DataFrame generated by below code :
importpandas as pd# Create a DataFramedframe=pd.DataFrame({'Geeks': [23,24,22],'For': [10,12, np.nan],'geeks': [0, np.nan, np.nan]},columns=['Geeks','For','geeks'])# This will remove all the# rows with NAN values# If axis is not defined then# it is along rows i.e. axis = 0dframe.dropna(inplace=True)print(dframe)# if axis is equal to 1dframe.dropna(axis=1, inplace=True)print(dframe)chevron_rightfilter_noneOutput :
axis=0
axis=1

- Fill the missing values :
Now, to replace any NaN value with mean or mode of the data,fillnais used, which could replace all the NaN values from a particular column or even in whole DataFrame as per the requirement.importnumpy as npimportpandas as pd# Create a DataFramedframe=pd.DataFrame({'Geeks': [23,24,22],'For': [10,12, np.nan],'geeks': [0, np.nan, np.nan]},columns=['Geeks','For','geeks'])# Use fillna of complete Dataframe# value function will be applied on every columndframe.fillna(value=dframe.mean(), inplace=True)print(dframe)# filling value of one columndframe['For'].fillna(value=dframe['For'].mean(),inplace=True)print(dframe)chevron_rightfilter_noneOutput :


3. Groupby Method (Aggregation) :
The groupby method allows us to group together the data based off any row or column, thus we can further apply the aggregate functions to analyze our data. Group series using mapper (dict or key function, apply given function to group, return result as series) or by a series of columns.
Consider this is the DataFrame generated by below code :

import pandas as pd import numpy as np # create DataFrame dframe = pd.DataFrame({'Geeks': [23, 24, 22, 22, 23, 24], 'For': [10, 12, 13, 14, 15, 16], 'geeks': [122, 142, 112, 122, 114, 112]}, columns = ['Geeks', 'For', 'geeks']) # Apply groupby and aggregate function # max to find max value of column # "For" and column "geeks" for every # different value of column "Geeks". print(dframe.groupby(['Geeks']).max()) |
Output :
Recommended Posts:
- Python PIL | BoxBlur() method
- Python | sympy.ones() method
- Python | sympy.zeros() method
- Python | sympy.eye() method
- How to write an empty function in Python - pass statement?
- Operator Functions in Python | Set 2
- Time Functions in Python | Set-2 (Date Manipulations)
- Send mail from your Gmail account using Python
- Python – The new generation Language
- Print Single and Multiple variable in Python
- Increment and Decrement Operators in Python
- str() vs repr() in Python
- Swap two variables in one line in C/C++, Python, PHP and Java
- Generate all permutation of a set in Python
- Class or Static Variables in Python
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.




geeksforgeeks2.csv