Skip to content
Advertisement

Reshaping a 3D array to a 2D array to produce a DataFrame: keep track of indices to produce column names

The following code generates a pandas.DataFrame from a 3D array over the first axis. I manually create the columns names (defining cols): is there a more built-in way to do this (to avoid potential errors e.g. regarding C-order)?

–> I am looking for a way to guarantee the respect of the order of the indices after the reshape operation (here it relies on the correct order of the iterations over range(nrow) and range(ncol)).

JavaScript

EDIT

Illustrating why I don’t like my solution – it is just too easy to make a code which technically works but produce a wrong result (inverting i and j or nrow and ncol):

JavaScript

Advertisement

Answer

Try this and see if it fits your use case:

Generate columns via a combination of np.indices, np.dstack and np.vstack :

JavaScript

Now convert to string via a combination of map, join and list comprehension:

JavaScript

Let’s know how it goes.

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