Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Input

I have many numpy structured arrays in a list like this example:

import numpy

a1 = numpy.array([(1, 2), (3, 4), (5, 6)], dtype=[('x', int), ('y', int)])

a2 = numpy.array([(7,10), (8,11), (9,12)], dtype=[('z', int), ('w', float)])

arrays = [a1, a2]

Desired Output

What is the correct way to join them all together to create a unified structured array like the following?

desired_result = numpy.array([(1, 2, 7, 10), (3, 4, 8, 11), (5, 6, 9, 12)],
                             dtype=[('x', int), ('y', int), ('z', int), ('w', float)])

Current Approach

This is what I'm currently using, but it is very slow, so I suspect there must be a more efficent way.

from numpy.lib.recfunctions import append_fields

def join_struct_arrays(arrays):
    for array in arrays:
        try:
            result = append_fields(result, array.dtype.names, [array[name] for name in array.dtype.names], usemask=False)
        except NameError:
            result = array

    return result
share|improve this question

3 Answers

up vote 5 down vote accepted

Here is an implementation that should be faster. It converts everything to arrays of numpy.uint8 and does not use any temporaries.

def join_struct_arrays(arrays):
    sizes = numpy.array([a.itemsize for a in arrays])
    offsets = numpy.r_[0, sizes.cumsum()]
    n = len(arrays[0])
    joint = numpy.empty((n, offsets[-1]), dtype=numpy.uint8)
    for a, size, offset in zip(arrays, sizes, offsets):
        joint[:,offset:offset+size] = a.view(numpy.uint8).reshape(n,size)
    dtype = sum((a.dtype.descr for a in arrays), [])
    return joint.ravel().view(dtype)

Edit: Simplified the code and avoided the unnecessary as_strided().

share|improve this answer
This is 166 times faster than my original solution. I would have never come up with that on my own. Thanks! – Jon-Eric Mar 18 '11 at 18:50
1  
@Jon-Eric: I simplified the code a bit (and threw out as_strided()). I hope this did not affect the performance. Also be sure to have a look at joris' second answer. – Sven Marnach Mar 18 '11 at 21:35

You can also use the function merge_arrays of numpy.lib.recfunctions:

import numpy.lib.recfunctions as rfn
rfn.merge_arrays(arrays, flatten = True, usemask = False)

Out[52]: 
array([(1, 2, 7, 10.0), (3, 4, 8, 11.0), (5, 6, 9, 12.0)], 
     dtype=[('x', '<i4'), ('y', '<i4'), ('z', '<i4'), ('w', '<f8')])
share|improve this answer
This is more readable and 1.32 times faster than my original solution. Thanks! – Jon-Eric Mar 18 '11 at 18:49
This is an awesome answer! – Mike Toews Jul 5 '11 at 9:21

and yet another way, a little more readable and also a lot faster I think:

def join_struct_arrays(arrays):
    newdtype = []
    for a in arrays:
        descr = []
        for field in a.dtype.names:
            (typ, _) = a.dtype.fields[field]
            descr.append((field, typ))
        newdtype.extend(tuple(descr))
    newrecarray = np.zeros(len(arrays[0]), dtype = newdtype)
    for a in arrays:
        for name in a.dtype.names:
            newrecarray[name] = a[name]
    return newrecarray

EDIT: with the suggestions of Sven it becomes (a little bit slower, but actually pretty readable):

def join_struct_arrays2(arrays):
    newdtype = sum((a.dtype.descr for a in arrays), [])
    newrecarray = np.empty(len(arrays[0]), dtype = newdtype)
    for a in arrays:
        for name in a.dtype.names:
            newrecarray[name] = a[name]
    return newrecarray
share|improve this answer
Nice, +1! Two suggestions: 1. Use numpy.empty() instead of numpy.zeros() -- it's not necessary to initialise the data. 2. Substitute the first seven lines by the last but one line of my code. – Sven Marnach Mar 18 '11 at 20:47
Thanks! That really simplified the code. But on the otherhand, I tested it with %timeit in IPython, and by substituting these 7 lines by your last but one line, it was two times slower. And I also compared it with your solution, and it appeared around 5 times slower than mine. But I guess that when the number of elements in the list of arrays increases, your solution will become better? – joris Mar 18 '11 at 21:10
To get meaningful timings, you'd need to use big arrays. And I would expect your solution to be at least on par with mine as far as performance is concerned. Note that using empty() instead of zeros() should speed things up a bit. – Sven Marnach Mar 18 '11 at 21:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.