Skip to content
Advertisement

How to turn a pandas DataFrame of lists of numbers into a 3-dimensional array?

I have a pandas DataFrame with a structure like this:

JavaScript

(to build it, do something like

JavaScript

What would be the simplest way to turn it into a NumPy 3-dimensional array? This would be the expected result:

JavaScript

I have tried several things, without success:

JavaScript

Advertisement

Answer

One option is to convert df to a list; then cast to numpy array:

JavaScript

Output:

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