Pandas group by function is used for grouping DataFrames objects or columns based on particular conditions or rules. Using the groupby function, the dataset management is easier. However, all related records can be arranged into groups. Using the Pandas library, you can implement the Pandas group by function to group the data according to different kinds of variables. Most developers used three basic techniques for the group by function. First, splitting in which data divide into groups based on some particular conditions. Then, apply certain functions to these groups. In the end, combine the output in the form of data structure.

In this article, we will walk through the basic uses of a group by function in panda’s python. All commands are executed on the Pycharm editor.

Let’s discuss the main concept of the group with the help of the employee’s data. We have created a dataframe with some useful employee details (Employee_Names, Designation, Employee_city, Age).

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image5-26.png" height="472" src="data:image/svg xml,” width=”482″>

String Concatenation using Group by Function

Using the groupby function, you can concatenate strings. Same records can be joined with ‘,’ in a single cell.

Example

In the following example, we have sorted data based on the employees ‘Designation’ column and joined the Employees who have the same designation. The lambda function is applied on ‘Employees_Name’.

import pandas as pd


df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


df1=df.groupby(“Designation”)[‘Employee_Names’].apply(lambda Employee_Names: ‘,’.join(Employee_Names))

print(df1)

When the above code is executed, the following output displays:

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image8-21.png" height="311" src="data:image/svg xml,” width=”503″>

Sorting Values in an ascending order

Use the groupby object into a regular dataframe by calling ‘.to_frame()’ and then use reset_index() for reindexing. Sort column values by calling sort_values().

Example

In this example, we will sort the Employee’s age in ascending order. Using the following piece of code, we have retrieved the ‘Employee_Age’ in ascending order with ‘Employee_Names’.

import pandas as pd

df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})

df1=df.groupby(‘Employee_Names’)[‘Employee_Age’].sum().to_frame().reset_index().sort_values(by=‘Employee_Age’)

print(df1)

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image7-24.png" height="326" src="data:image/svg xml,” width=”565″>

Use of aggregates with groupby

There are a number of functions or aggregations available that you can apply on data groups such as count(), sum(), mean(), median(), mode(), std(), min(), max().

Example

In this example, we have used a ‘count()’ function with groupby to count the Employees who belong to the same ‘Employee_city’.

import pandas as pd


df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


df1=df.groupby(‘Employee_city’).count()

print(df1)

As you can see the following output, under the Designation, Employee_Names, and Employee_Age columns, count numbers that belong to the same city:

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image10-19.png" height="244" src="data:image/svg xml,” width=”857″>

Visualize data using groupby

By using the ‘import matplotlib.pyplot’, you can visualize your data into graphs.

Example

Here, the following example visualizes the ‘Employee_Age’ with ‘Employee_Nmaes’ from the given DataFrame by using the groupby statement.

import pandas as pd

import matplotlib.pyplot as plt


dataframe = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


plt.clf()


dataframe.groupby(‘Employee_Names’).sum().plot(kind=‘bar’)


plt.show()

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image9-19.png" height="547" src="data:image/svg xml,” width=”730″>

Example

To plot the stacked graph using groupby, turn the ‘stacked=true’ and use the following code:

import pandas as pd

import matplotlib.pyplot as plt


df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


df.groupby([‘Employee_city’,‘Employee_Names’]).size().unstack().plot(kind=‘bar’,stacked=True, fontsize=‘6’)


plt.show()

In the below-given graph, the number of employees stacked who belong to the same city.

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image2-32.png" height="643" src="data:image/svg xml,” width=”800″>

Change Column Name with the group by

You can also change the aggregated column name with some new modified name as follows:

import pandas as pd

import matplotlib.pyplot as plt


df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


df1 = df.groupby(‘Employee_Names’)[‘Designation’].sum().reset_index(name=‘Employee_Designation’)

print(df1)

In the above example, the ‘Designation’ name is changed to ‘Employee_Designation’.

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image1-33.png" height="327" src="data:image/svg xml,” width=”870″>

Retrieve Group by key or value

Using the groupby statement, you can retrieve similar records or values from the dataframe.

Example

In the below-given example, we have group data based on ‘Designation’. Then, the ‘Staff’ group is retrieved by using the .getgroup(‘Staff’).

import pandas as pd

import matplotlib.pyplot as plt


df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})

extract_value = df.groupby(‘Designation’)

print(extract_value.get_group(‘Staff’))

The following result displays in the output window:

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image4-28.png" height="220" src="data:image/svg xml,” width=”783″>

Add Value into group List

Similar data can be displayed in the form of a list by using the groupby statement. First, group the data based on a condition. Then, by applying the function, you can easily put this group into the lists.

Example

In this example, we have inserted similar records into the group list. All the employees are divided into the group based on ’Employee_city’, and then by applying the ‘Lambda’ function, this group is retrieved in the form of a list.

import pandas as pd

df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


df1=df.groupby(‘Employee_city’)[‘Employee_Names’].apply(lambda group_series: group_series.tolist()).reset_index()

print(df1)

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image3-30.png" height="260" src="data:image/svg xml,” width=”913″>

Use of Transform function with groupby

The employees are grouped according to their age, these values added together, and by using the ‘transform’ function new column is added in the table:

import pandas as pd

df = pd.DataFrame({


   ‘Employee_Names’:[‘Sam’, ‘Ali’ , ‘Umar’, ‘Raees’, ‘Mahwish’, ‘Hania’, ‘Mirha’, ‘Maria’, ‘Hamza’],


   ‘Designation’:[‘Manager’, ‘Staff’, ‘IT officer’, ‘IT officer’, ‘HR’, ‘Staff’, ‘HR’, ‘Staff’, ‘Team Lead’],


   ‘Employee_city’:[‘Karachi’, ‘Karachi’, ‘Islamabad’, ‘Islamabad’, ‘Quetta’, ‘Lahore’, ‘Faislabad’, ‘Lahore’, ‘Islamabad’],


   ‘Employee_Age’:[60, 23, 25, 32, 43, 26, 30, 23, 35]

})


df[‘sum’]=df.groupby([‘Employee_Names’])[‘Employee_Age’].transform(‘sum’)

print(df)

<img alt="" data-lazy-src="https://kirelos.com/wp-content/uploads/2021/03/echo/image6-24.png" height="328" src="data:image/svg xml,” width=”851″>

Conclusion

We have explored the different uses of groupby statement in this article. We have shown how you can divide the data into groups, and by applying different aggregations or functions, you can easily retrieve these groups.

About the author

<img alt="Avatar" data-lazy-src="https://secure.gravatar.com/avatar/49ac9cf0c583f1d7e06205a87f549d76?s=112&r=g" height="112" src="data:image/svg xml,” width=”112″>

Samreena Aslam

Samreena Aslam holds a master’s degree in Software Engineering. Currently, she’s working as a Freelancer & Technical writer. She’s a Linux enthusiast and has written various articles on Computer programming, different Linux flavors including Ubuntu, Debian, CentOS, and Mint.