A *rec*ord *array* in the python package numpy - think of as a table with column names.

learn more… | top users | synonyms

1
vote
1answer
17 views

Change dtype of recarray column for object type

I have a csv file where two columns (v3 and v7) are blank for all observations: v1,v2,v3,v4,v5,v6,v7 GNB,1980,,20,-1.168689,0.4619077, GNB,1981,20,-1.185176,0.4619077, I am reading this into python ...
1
vote
1answer
47 views

Python Numpy recarray sort bidirectional

I have a structured numpy array, and I am sorting it by a order. It works pretty fine but in just one direction! Descending: sort(myStructuredArray,order=my_order)[::-1] and Ascending: ...
2
votes
0answers
134 views

numpy.concatenate of two recarrays leads to transposed shape?

Suppose I have two numpy arrays x1 and x2 with the same dtype but different shape:x1.dtype = dtype([('fmv', '<f4'), ('delta', '<f4'), ('rho', '<f4', (5,))]) x2.dtype = dtype([('fmv', ...
1
vote
2answers
54 views

Add hierarchy to numpy structured array

I would like to take an existing array with several named fields, and create a new array (or change it in place) with one field with a hierarchical dtype equal to the original dtype. That is, ...
2
votes
1answer
97 views

find close elements in numpy recarray

I am trying to find all the values from numpy record array no1 which are closest to values in rec array no2 (record arrays have different number of values) Lets say no1 has fields: ('electrode', ...
0
votes
3answers
409 views

Index datetime in numpy array

I have a numpy array roughly like so: data array([(datetime.datetime(2009, 1, 6, 2, 30), 17924.0, 0.0),.... (datetime.datetime(2009, 1, 29, 16, 30), 35249.2, 521.25], ...
3
votes
4answers
233 views

Numpy Mean Structured Array

Suppose that I have a structured array of students (strings) and test scores (ints), where each entry is the score that a specific student received on a specific test. Each student has multiple ...
1
vote
2answers
224 views

Python numpy recarray: Can one obtain a view into different fields using pointer arithmetic?

I have a numpy structured array of the following form: x = np.array([(1,2,3)]*2, [('t', np.int16), ('x', np.int8), ('y', np.int8)]) I now want to generate views into this array that team up 't' ...
0
votes
0answers
87 views

python numpy recarray stacking

How can I stack or join numpy recarrays without getting errors like: self.data = numpy.lib.recfunctions.stack_arrays((self.data, data))# , asrecarray=True) # works File ...
0
votes
1answer
159 views

python numpy recarray join

Is there no "join" function in numpy recarrays? I see matplotlib has something and there is a concatenate but this is not a solution. I want a fast join in numpy/scipy or understand why it is not ...
1
vote
1answer
799 views

How to make a numpy recarray with datatypes (datetime,float)?

Let's say I have some simple data y = [[datetime.datetime( 2012,1,1,1,1), 2.1], [datetime.datetime( 2012,1,1,1,2), -3.1], [datetime.datetime( 2012,1,1,1,3), 0.1]] and I want a numpy ...
1
vote
1answer
226 views

rec2csv exporting with a blank line between rows

I'm trying to export a a recarray to csv file with rec2csv so I can retrieve it later with csv2rec. The problem is that the rec2csv is exporting with a blank line between each rows, so csv2rec cannot ...
2
votes
2answers
2k views

Normalize/Standardize a numpy recarray

I wonder what the best way of normalizing/standardizing a numpy recarray is. To make it clear, I'm not talking about a mathematical matrix, but a record array that also has e.g. textual columns (such ...
7
votes
1answer
813 views

numpy recarray strings of variable length

Is it possible to initialise a numpy recarray that will hold strings, without knowing the length of the strings beforehand? As a (contrived) example: mydf = np.empty( (numrows,), dtype=[ ...
0
votes
1answer
581 views

Get recarray attributes/columns python

I'm trying to retrieve the column titles of a recarray, and running into considerable trouble. If I read in a .csv file using pylab's csv2rec function, I am able to access column titles in the ...
1
vote
1answer
245 views

Join Recarrays by attributes in Python

I am trying to join recarrys in python such that the same value joins to many elements. The following code works when it is a 1:1 ratio, but when I am trying to do many:1, it only joins one instance: ...
2
votes
1answer
141 views

numpy recarray copy retains dtype reference?

I am trying to copy a recarray and change the names of the fields/records in the new array. However, this modifies the names of the original array (the values are not unlinked, however). Example: ...
4
votes
1answer
212 views

How to change the dtype of a ndarray to custom one in numpy?

I made a dtype that is: mytype = np.dtype([('a',np.uint8), ('b',np.uint8), ('c',np.uint8)]) so the array using this dtype: test1 = np.zeros(3, dtype=mytype) test1 is: array([(0, 0, 0), (0, 0, ...
5
votes
1answer
900 views

Select Rows from Numpy Rec Array

I have a Numpy rec array from which I would like to do some quick queries similar to SQL: SELECT * where array['phase'] == "P". I would like to get a Record Array as output with each row corresponding ...
1
vote
1answer
277 views

handling None values in conversion to numpy recarray

Is there a graceful way of handling None values in a conversion of a list of tuples to a numpy recarray using the single call to np.rec.fromrecords? Assuming I know what I want the missing value to ...
7
votes
4answers
2k views

Sorting a python array/recarray by column

I have a fairly simple question about how to sort an entire array/recarray by a given column. For example, given the array: data = np.array([[5,2], [4,1], [3,6]]) I would like to sort data by ...
1
vote
2answers
869 views

numpy: Replacing values in a recarray

I'm pretty new to numpy, and I'm trying to replace a value in a recarray. So I have this array: import numpy as np d = [('1', ''),('4', '5'),('7', '8')] a = np.array(d, dtype=[('first', 'a5'), ...
3
votes
3answers
1k views

Convert structured array to regular NumPy array

The answer will be very obvious I think, but I don't see it at the moment. How can I convert a record array back to a regular ndarray? Suppose I have following simple structured array: x = ...
0
votes
1answer
407 views

getting recarray into postgres using psycopg2

Just would like to get a quick idea on the best, meaning least coding, way to get lots of data in recarray into postgres using psycopg2. I have seen some stuff using cast but really I thought it would ...
2
votes
1answer
107 views

numpy: query a data from masked record?

I have mask record like this In [41]: x Out[41]: masked_records( CHR : [12 12 12 ..., 12 12 12] SNP : [rs4980929 rs4980929 rs4980929 ..., rs7975069 rs7975069 rs7975069] A1 : [C C ...
1
vote
0answers
289 views

numpy recfunctions join_by bug

There seems to be a problem with the join_by function in numpy.lib.recfunctions when doing an outer join on multiple keys. The matplotlib.mlab function works correctly. The recfunctions version ...
1
vote
0answers
484 views

masked arrays in numpy error

I input a file using genfromtxt and some of the values are missing so I generate a masked array. When I try to index some of the values of the records of the masked array I get an error which I ...
2
votes
2answers
1k views

Adding a field to a structured numpy array (2)

I know there was already a question about this topic (cleanest way to add a field to a structured numpy array), see Adding a field to a structured numpy array but I have a question about the answer ...
2
votes
2answers
483 views

numpy recarray indexing based on intersection with external array

I'm trying to subset the records in a numpy.recarray based on the common values between one of the recarrays fields and an external array. For example, a = np.array([(10, 'Bob', 145.7), (20, 'Sue', ...
0
votes
1answer
158 views

numpy recarray minimum diffrences

I have a numpy recarray I want to find record where difference of 1st element and last element of record is maximum. can someone suggest a way to do this. thanks
0
votes
1answer
371 views

numpy structured arrays: help understanding output

I am trying to learn how to use numpy's structured arrays. Specifically, I was trying to add information to more than one field at a time. I tried: import numpy as np numrec = np.zeros(8, ...
4
votes
3answers
743 views

Subclassing numpy ndarray problem

I would like to subclass numpy ndarray. However, I cannot change the array. Why self = ... does not change the array? Thanks. import numpy as np class Data(np.ndarray): def __new__(cls, ...
0
votes
1answer
563 views

Create a new array from numpy array based on the conditions from a list

Suppose that I have an array defined by: data = np.array([('a1v1', 'a2v1', 'a3v1', 'a4v1', 'a5v1'), ('a1v1', 'a2v1', 'a3v1', 'a4v2', 'a5v1'), ('a1v3', 'a2v1', 'a3v1', 'a4v1', 'a5v2'), ...
2
votes
1answer
782 views

Converting (part of) a numpy recarray into a 2d array?

We've got a set of recarrays of data for individual days - the first attribute is a timestamp and the rest are values. Several of these: ts a b c 2010-08-06 08:00, 1.2, 3.4, ...
3
votes
1answer
1k views

Python Numpy Structured Array (recarray) assigning values into slices

The following example shows what I want to do: >>> test rec.array([(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0)], ...
0
votes
2answers
609 views

Calculating conditional probabilities from joint pmfs in numpy, too slow. Ideas? (python-numpy)

I have a conjunctive probability mass function array, with shape, for example (1,2,3,4,5,6) and I want to calculate the probability table, conditional to a value for some of the dimensions (export the ...
3
votes
3answers
1k views

Stacking numpy recarrays without losing their recarrayness

Suppose I make two recarrays with the same dtype and stack them: >>> import numpy as np >>> dt = [('foo', int), ('bar', float)] >>> a = np.empty(2, ...
1
vote
3answers
2k views

Combining two record arrays

I have two Numpy record arrays that have exactly the same fields. What is the easiest way to combine them into one (i.e. append one table on to the other)?