I have a 1-D array in numpy whose shape is (761,) and each entry is a 10 tuple whose elements I can't access independently. The dtype is
array1.dtype
dtype([('Name', '|S58'), ('Category', '|S32'), ('HQLocation', '|S34'),
('YearFounded', '<i8'), ('Latitude', '<f8'), ('Longitude', '<f8'),
('TotalFundingAmount', '<i8'), ('LastFundingAmount', '<i8'),
('Investors', '<i8'), ('NGrams', '|S98')])
An example row is array1[578]
('"FoxyP2, Inc."', 'Education', '"Cuajimalpa, Mexico"', 2006, 19.3547,
-99.3001, 55317213, 42999977, 3,
'english;learning;reinvent;experience;english learning')
I'm trying to make this into a 2-D array whose shape is (761,10) while keeping the column names and data types.