So, let's say I have a data frame like this.
df = pd.DataFrame({'person':['A', 'A', 'B', 'B', 'A'],
'datetime':['2018-02-26 10:49:32', '2018-02-26 10:58:03', '2018-02-26 10:51:10','2018-02-26 10:58:45', '2018-02-26 10:43:34'],
'location':['a', 'b', 'c', 'd', 'e']})
That shows
person datetime location
A 2018-02-26 10:49:32 a
A 2018-02-26 10:58:03 b
B 2018-02-26 10:51:10 c
B 2018-02-26 10:58:45 d
A 2018-02-26 10:43:34 e
Then I sorted them based on each person and time
df.sort_values(by=['person', 'datetime'])
Which would sort the movement of each person then by their time.
person datetime location
4 A 2018-02-26 10:43:34 e
0 A 2018-02-26 10:49:32 a
1 A 2018-02-26 10:58:03 b
2 B 2018-02-26 10:51:10 c
3 B 2018-02-26 10:58:45 d
Which can be read as person A goes from place e, then goes to a, then goes to b. Meanwhile person B goes from place c then to place d.
I want to create a dataframe which tracks each person's movement, like this.
| person | prev_datetime | prev_loc | next_datetime | next_loc |
|--------|---------------------|----------|---------------------|----------|
| A | 2018-02-26 10:43:34 | e | 2018-02-26 10:49:32 | a |
| A | 2018-02-26 10:49:32 | a | 2018-02-26 10:58:03 | b |
| B | 2018-02-26 10:51:10 | c | 2018-02-26 10:58:45 | d |
I haven't really had any idea how to do this. Thanks.