I just read about pytables an saw a presentation-video from the creator of pytables. It looks very promising, but also a bit complicated and I have to install serval packages. So I hope bevor doing that it is ok to ask here a question. What I need to do is:
np_array = numpy.zeros((len(example1), len(example2)), dtype=int)
'''filling the np_array'''
np_array_sum = np_array.sum(0)
np_array_sum_ordered = np_array_sum.argsort()[::-1]
np_array = numpy.take(np_array, np_array_sum_ordered, axis=1)
Is it possible to give pytables the np_array and do the numpy-operations or do I need to do it with pytable operations? If I need to use pytables methods, how can I can the same thing?