chevron_left
Data Aggregation Cookbook
Applying a function to multiple columns in groupsCalculating percentiles of a DataFrameCalculating the percentage of each value in each groupComputing descriptive statistics of each groupDifference between a group's count and sizeDifference between methods apply and transform for groupbyGetting cumulative sum of each groupGetting descriptive statistics of DataFrameGetting multiple aggregates of a column after groupingGetting n rows with smallest column value in each groupGetting number of distinct rows in each groupGetting size of each groupGetting specific group after groupbyGetting the first row of each groupGetting the last row of each groupGetting the top n rows with largest column value in each groupGetting unique values of each groupGrouping by multiple columnsGrouping without turning group column into indexMerging rows within a group togetherNaming columns after aggregationSorting values within groups
check_circle
Mark as learned thumb_up
0
thumb_down
0
chat_bubble_outline
0
auto_stories new
settings
Getting specific group after groupby in Pandas
Pandas
chevron_rightCookbooks
chevron_rightDataFrame Cookbooks
chevron_rightData Aggregation Cookbook
schedule Jul 1, 2022
Last updated local_offer Python●Pandas
Tags tocTable of Contents
expand_more Check out the interactive map of data science
To get a specific group after calling groupby(~)
, use the get_group(~)
method, which returns a DataFrame
.
Example
Consider the following DataFrame:
df = pd.DataFrame({"price":[200,300,700,900], "brand":["apple", "google", "apple", "google"], "device":["phone","phone","computer","phone"]})df
price brand device0 200 apple phone1 300 google phone2 700 apple computer3 900 google phone
To get the group "apple"
as a DataFrame
:
df.groupby("brand").get_group("apple")
price brand device0 200 apple phone2 700 apple computer
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!