Opening a CSV in PandasGUI

To open a CSV file in PandasGUI we need to use the show() function. Let’s start by import it along with pandas. Click here to get the dataset.

Python3




from pandasgui import show
import pandas as pd


The next thing we do is to load our CSV as DataFrame using read_csv() and pass that dataframe into the show() as an argument.

Python3




df = pd.read_csv('data.csv')
show(df)


Output:

This is our dataframe and we can scroll around and get an overview of the data. You can see empty cells that represent NaN values. You can edit the data by clicking on a cell and editing its value. You can sort the dataframe based on a particular column by simply clicking the column. In the picture below we can sort the dataframe based on the column Total_bill by clicking on it.

Data Exploration using Pandas GUI

Data Preprocessing is an important part of the Data Science pipeline, you need to find out about various irregularities in the data, you manipulate your features, etc. Pandas is a tool that we use very often for manipulating the data, along with seaborn and matplotlib for Data Visualization. PandasGUI is a library that makes this task much easier by providing a GUI interface that can be used to make 

Installing PandasGUI

You can install PandasGUI like any other python library using the pip command. The command for the same is:-

pip install pandasgui

Similar Reads

Opening a CSV in PandasGUI

To open a CSV file in PandasGUI we need to use the show() function. Let’s start by import it along with pandas. Click here to get the dataset....

Filters in PandasGUI

...

Statistics in Pandas GUI

...

Data Visualization in PandasGUI

Let’s Suppose we want to see the rows where the value of MSSubClass is greater than or equal to 120. In pandas, we can do that using the following command:-...

Contact Us