Skip to content
Advertisement

Convert 2D dataframe to 3D numpy array based on unique ID

I have a dataframe in this format:

JavaScript

… though my dataframe is much larger, with more than 500 hundred IDs.

I want to convert this 2D – dataframe into a 3D array in this format (num_time_samples, value, ID). Essentially I would like to have one 2D-array for every unique ID.

I plan on using the value column to build lag based feature vectors, but I’m stuck on how to convert the dataframe. I’ve searched and tried df.value, reshaping, etc and nothing has worked.

Advertisement

Answer

Say you have

JavaScript

where df actually is a subset of your dataframe keeping eveything data-type-naive.

I want to convert this 2D – dataframe into a 3D array in this format (num_time_samples, value, ID).

Why not do

JavaScript

a looks like

JavaScript

a is structured as time column × ID column × Value (and indexable accordingly). E.g. let’s get individuals’ 00:15:00-data

JavaScript

Let’s get the first and second individual’s time series, respectively,

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