Do you have a file in a data frame? Like column names, this is the username, process ID, start time ... If so, you can easily extract it using
df$Username (where df is your data frame and if you want to see all your usernames) df$FinishTime
If you want to know everything about a user with a specific name, use this
df[df$username == "SOMETHI",]
If you want to know the user with the end time.
Hope this could be the starting point. Let me know if not clear.
Chris source share