Is it possible to store arbitrary numpy arrays as the values of a single column in a dataframe of Pandas?
The arrays are all 2-dimensional, and I intend to use them to calculate values for other columns in the same dataframe.
To provide some context of what I'm trying to do here:
Each array is an adjacency matrix of some network, and for each network I want to calculate its various characteristics (e.g. density, centralities, clustering coefficient, etc) which are in fact other columns in the same dataframe.