Skip to content
Advertisement

Looking for the quickest way to find the value of a column given an index for all rows

I’m looking for a more efficient way to grab acertain value at a certain index for every row in a Pandas DataFrame than the one I have currently. Here’s the code I have so far. The .apply() function with the lambda syntax is super slow so would love a more optimised version.

Let me know if you need more info/context, thanks!

JavaScript

EDIT: Here’s an example output:

index timestamp user_id last_true_index minutes_in_session minutes_of_last_true_index
0 Time1 1 0 100 100
1 Time2 1 0 101 100
11 Time3 2 11 54 54
12 Time4 2 11 55 54

The minutes_of_last_true_index is the column to be populated.

Advertisement

Answer

try merging the original df with itself using last_true_index and index as keys:

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