I am working with numpy and to create a heterogeneous array it is necesary to use dtype() function. After read some python doc about this function I think I know how it works;
t = np.dtype([('name', str),('edad',int)]) <-- This tells to python that my array will have a new data type with a string named 'name' and an int named 'edad'.
R = np.array([('Rosendo',15)]) <-- And now everything I put with this other python will try to convert to str and int.
Is this the correct way to create heterogeneous arrays? My array items have to be always tuples? I saw some people code like this:
t = dtype([('name', str_, 40), ('numitems', int32), ('price',float32)])
But but this not gonna work, what about the "40" on ('name', str_, 40). Is there other ways to create heterogeneous arrays using dtype()?
To create a structured array you need to specify the compound dtype, and the data as a list of tuples:
Often it is easier to specify data by field: