How do I convert a 3-dimensional NumPy array [sample_index, channel, data] into a dataframe with each sample as a row and the channels as a column?
The numpy arrays look like this:
import numpy as np
np.random.uniform(-25, 100, size=(6400,3,100*100))