I am having a dataset that is having GPS data for objects and time components.
The dataframe is having 2 columns: Object and Time. Each row in the time column matches a dataframe within the Object column, which holds a unique name/ID of each object (there are 5) and the X, Y, and Z coordinates at that instance of time.
My question is, is there a way to extract just one of the ID's and coordinates from the "dataframe within a dataframe" to create a new DF with the XYZ coordinates, ID, and time? The final goal is to have new 5 dataframes for each object so I can separately plot the location for each object.