Tagged Questions
The recarray tag has no wiki summary.
5
votes
4answers
152 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 ...
4
votes
1answer
68 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, ...
3
votes
1answer
178 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 ...
2
votes
1answer
74 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:
...
2
votes
1answer
70 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 ...
2
votes
2answers
230 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', ...
2
votes
1answer
503 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)],
...
1
vote
1answer
71 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:
...
1
vote
1answer
93 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 ...
1
vote
2answers
234 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'), ...
1
vote
2answers
162 views
Convert structured array to normal nd 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 normal nd array?
Suppose I have following simple structured array:
x = ...
1
vote
0answers
151 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
261 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 ...
1
vote
2answers
247 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 ...
1
vote
3answers
253 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, ...
1
vote
1answer
287 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, ...
0
votes
1answer
23 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 ...
0
votes
1answer
188 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 ...
0
votes
1answer
128 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
242 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, ...
0
votes
1answer
266 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'),
...
0
votes
2answers
391 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 ...
0
votes
2answers
494 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, ...
0
votes
3answers
966 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)?