Skip to content
Advertisement

Pandas – get values from list of tuples and map them to values on new columns based on condition

I have this dataframe, df_match:

JavaScript

where each row on from_home_player_1_to_home_player_11 column keeps a list of tuples, like so:

df_match.sample(1):

JavaScript

GOAL

Now I would like to set X/Y coordinates for each player on the field (using only coord X here in order to simplify it), per match (row)

Each player on from_home_player_1_to_home_player_11 needs an X value. So I need a list of newly created X columns, like so:

JavaScript

Lastly, each position has an arbitrary set of X values. (When there’s more than one option, it can be ANY one of them, randomly chosen)

JavaScript

My aim here is to map -at each row, players positions to an X coordinate, ending up with:

JavaScript

How can I do this mapping based on the position/value condition with pandas?

I started thinking of iterating through the dataframe with:

JavaScript

But i haven’t gone very far with that.

Advertisement

Answer

Something like your data:

JavaScript

Build a position mapping, noting that all are lists:

JavaScript

Apply a lookup from the dictionary, choosing a random option, and then blowing up into individual columns. Rename the columns:

JavaScript

Note that it puts -1 in the position if the key isn’t found. Then pd.concat() them together:

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