Skip to content
Advertisement

Pandas split group into first and last values

I have multiple dataframes with a structure that starts with 10 and then goes from 0 to 10:

JavaScript

So far I’ve been using this code to group the dataframe by type:

JavaScript

It works fine for types 0-9, but I’d also like to split type 10 into 2 groups to distinguish first and last values instead of having it all in a single dataframe like this:

JavaScript

Advertisement

Answer

Create groups for consecutive groups and then for selecting use tuple:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement