NumPy is a scientific and numerical computing extension to the Python programming language.
6
votes
2answers
61 views
Numpy size of data type
In numpy, I can get the size (in bytes) of a particular data type by:
datatype(...).itemsize
or:
datatype(...).nbytes
e.g.:
np.float32(5).itemsize #4
np.float32(5).nbytes #4
I have 2 ...
4
votes
2answers
50 views
floats in NumPy structured array and native string formatting with .format()
Can anyone tell me why this NumPy record is having trouble with Python's new-style string formatting? All floats in the record choke on "{:f}".format(record).
Thanks for your help!
In [334]: ...
2
votes
1answer
37 views
Error when trying to apply log method to pandas data frame column in Python
So, I am very new to Python and Pandas (and programming in general), but am having trouble with a seemingly simple function. So I created the following dataframe using data pulled with a SQL query (if ...
3
votes
2answers
93 views
binning a dataframe in pandas in Python
given the following dataframe in pandas:
import numpy as np
df = pandas.DataFrame({"a": np.random.random(100), "b": np.random.random(100), "id": np.arange(100)})
where id is an id for each point ...
0
votes
2answers
125 views
Scipy: fill a histogram reading from a DB, event by event, in a loop
You sometimes don't want to fill a histogram after creating a huge list. You want to read a DB and fill the histogram event by event. Eg:
collection = db["my_collection"]
for event in ...
2
votes
1answer
56 views
Creating sublist from a give list of items
I would say first that the following question is not for homework purpose even because i've finish software engineer a few months ago. Anyway today I was working and one friend ask to me this strange ...
1
vote
1answer
67 views
Python WAV “TypeError: data type not understood” error
I've had a problem reading a .wav file using Python. I want to read the amplitude and sampling rate of the file.
I tried reading the file using the following code:
import os
folder = os.getcwd() + ...
3
votes
0answers
37 views
vectorize a function operated on subarray of a ndarray
I have a function acted on each 2D slices of a 3D array. How to vectorize the function to avoid loop to improve the performace? For example:
def interp_2d(x0,y0,z0,x1,y1):
# x0, y0 and z0 are 2D ...
1
vote
0answers
47 views
creating and manipulating 3d arrays
I am (very) new to python, previously a Matlab user.
I try to create code to load times series into the rows of a matrix [serie1, 2, 3, etc.] and then manipulate those time series into a loop (see ...
2
votes
1answer
66 views
Find the columnwise indices of the minimum values of a generator in Python + Numpy
I have a series of generators that creates a vector such as:
vector = ( remainder(v, PRIME_NUMBER) for v in list_of_vectors)
and I want to generate a vector containing the row indices of the ...
3
votes
1answer
53 views
Difference between Python float and numpy float32
What is the difference between the built in float and numpy.float32?
Example
a = 58682.7578125
print type(a)
print a
print type(numpy.float32(a))
print numpy.float32(a)
Output:
<type ...
4
votes
3answers
53 views
Numpy Convert String Representation of Boolean Array To Boolean Array
Is there a native numpy way to convert an array of string representations of booleans eg:
['True','False','True','False']
To an actual boolean array I can use for masking/indexing? I could do a for ...
1
vote
1answer
27 views
Populate predefined numpy array with arrays as columns
Something I can't figure out by reading the Python documentation and stackoverflow. Probably I'm thinking in the wrong direction..
Let's say I've a predefined 2D Numpy array as follow:
a = ...
8
votes
3answers
1k views
Better way to shuffle two numpy arrays in unison
I have two numpy arrays of different shapes, but with the same length (leading dimension). I want to shuffle each of them, such that corresponding elements continue to correspond -- i.e. shuffle them ...
1
vote
1answer
40 views
Building 64-bit Python extensions with f2py on Windows
I'm attempting to build a Python extension from Fortran source using Numpy's f2py.py script. I'm following the steps from http://www.scipy.org/F2PY_Windows (web archive). My system is Windows 7 ...
2
votes
1answer
27 views
Grouping array to nested structure with numpy
Say I've got a numpy array like this (larger and with different number of repetitions per date):
data = np.array([ \
["2011-01-01", 24, 554, 66], \
["2011-01-01", 44, 524, 62], \
...
1
vote
2answers
61 views
numpy np.array versus np.matrix (performance)
often when working with numpy I find the distinction annoying - when I pull out a vector or a row from a matrix and then perform operations with np.arrays there are usually problems.
to reduce ...
7
votes
1answer
1k views
Element-wise power of scipy.sparse matrix
How do I raise a scipy.sparse matrix to a power, element-wise? numpy.power should, according to its manual, do this, but it fails on sparse matrices:
>>> X
<1353x32100 sparse matrix of ...
3
votes
1answer
46 views
Create new numpy array-scalar of flexible dtype
I have a working solution to my problem, but when trying different things I was astounded there wasn't a better solution that I could find. It all boils down to creating a single flexible dtype value ...
0
votes
1answer
50 views
Python attributes and numpy arrays
I have a class that stores some attributes. These attributes are numpy arrays with some floats inside. I want this attributes to be accessed when creating objects. What I don't want is them to be ...
6
votes
2answers
2k views
Frequency Analysis in Python
I'm trying to use Python to retrieve the dominant frequencies of a live audio input. For the moment I am experimenting using the audio stream my Laptop's built in microphone, but when testing the ...
0
votes
1answer
37 views
changing the values of a list if they are more than a certain value
I am reading in a list from a text file and taking the standard deviation of this list, I want to know how to make values outside one standard deviation away from the mean to just be used as one ...
1
vote
1answer
22 views
Mapping an array into other with zeros at the begining and the end
I have a numpy array
a = np.arange(30).reshape(5,6)
and I want to map it into
b = np.zeros((a.shape[0],a.shape[1]+2))
but leaving the first and last columns as zeros
i.e.
b =
array [[0, 0, ...
1
vote
1answer
41 views
Optimizing logical operations on nested numpy arrays
I start with a numpy array of numpy arrays, where each of the inner numpy arrays can have different lengths. An example is given below:
import numpy as np
a = np.array([1,2,3])
b = np.array([4,5])
c ...
0
votes
2answers
54 views
Identity element for `numpy.hstack`
How can I create an empty array wich I can then hstack with another array to fill with values?
For example in Matlab, I can do the following:
a = [];
b = [10 20];
a = [a b];
and would get
a =
...
2
votes
1answer
54 views
Matlab filter not compatible with Python lfilter
Good day,
I have been fiddling around porting matlab code to python and I ran into this weird issue. I googled around a bit but found no information that indicates I am doing something wrong.
The ...
3
votes
2answers
38 views
NumPy array, change the values that are NOT in a list of indices
I have a numpy array like:
a = np.arange(30)
I know that I can replace the values located at positions indices=[2,3,4] using for instance fancy indexing:
a[indices] = 999
But how to replace the ...
5
votes
2answers
93 views
Can I trick numpy.histogram into behaving like numpy.bincount?
So, I have lists of words and I need to know how often each word appears on each list. Using ".count(word)" works, but it's too slow (each list has thousands of words and I have thousands of lists).
...
9
votes
4answers
3k views
Converting between datetime, Timestamp and datetime64
How do I convert a numpy.datetime64 object to a datetime.datetime (or Timestamp)?
In the following code, I create a datetime, timestamp and datetime64 objects.
import datetime
import numpy as np
...
1
vote
1answer
76 views
Plot a graph in NetworkX
I try to plot a simple graph in networkx, but this error message appears:
RuntimeError: module compiled against API version 6 but this version of numpy is 4
Traceback (most recent call last):
File ...
2
votes
2answers
20 views
How can I broadcast between 1D and nD arrays to obtain a (1+n)D array output?
I have an n-dimensional ndarray z0, and a 1-dimensional ndarray za. The sizes don't correspond to each other in any way. I'd like to be able to create a new n+1-dimensional array, z, where ...
1
vote
0answers
14 views
Rehaped views in Parallel Colt
In numpy, there is a flatten operation which allows you to, for example, flatten a m x n matrix down to an array of mn elements, and a reshape operations which goes in the opposite direction. Much of ...
9
votes
5answers
299 views
What's an efficient way to find if a point lies in the convex hull of a point cloud?
I have a point cloud of coordinates in numpy. For a high number of points, I want to find out if the points lie in the convex hull of the point cloud.
I tried pyhull but I cant figure out how to ...
3
votes
1answer
42 views
How can I use Scipy to do a memory efficient distance transform operation?
I am working on a project in Python using GDAL to work on GIS rasters. These rasters or images can get rather large so I usually use memory mapping in Numpy to load them. Currently I want to do a ...
0
votes
4answers
60 views
savetxt save only last loop data
Can someone please explain?
import numpy
a = ([1,2,3,45])
b = ([6,7,8,9,10])
numpy.savetxt('test.txt',(a,b))
This script can save well the data. But when I am running it through a loop it can ...
0
votes
1answer
43 views
Pixel color inside a contour using numpy
I am trying to constitute a numpy array containing the color hue of each pixel within a contour, using opencv 2.4. I have extracted the coordinates of all point included inside the contour using ...
1
vote
1answer
44 views
NumPy odeint output extra variables
What is the easiest way to save intermediate variables during simulation with odeint in Numpy?
For example:
def dy(y,t)
x = np.rand(3,1)
return y + x.sum()
sim = ...
2
votes
1answer
33 views
How to read a float from a raw binary file written with numpy's tofile()
I am writing a float32 to a file with numpys tofile().
float_num = float32(3.4353)
float_num.tofile('float_test.bin')
It can be read with numpys fromfile(), however that doesn't suite my need and i ...
3
votes
1answer
58 views
Merging two arrays under numpy
Using Numpy, I would like to achieve the result below, given b and c. I have looked into stacking functions, but I cannot get it to work. Could someone please help?
import numpy as np
...
2
votes
1answer
73 views
Any way to solve a system of coupled differential equations in python?
I've been working with sympy and scipy, but can't find or figure out how to solve a system of coupled differential equations (non-linear, first-order).
So is there any way to solve coupled ...
2
votes
2answers
98 views
Object oriented vs vector based programming [closed]
I am torn between object oriented and vector based design. I love the abilities, structure and safety that objects give to the whole architecture. But at the same time, speed is very important to me, ...
1
vote
1answer
120 views
Generating a dense matrix from a sparse matrix in numpy python
I have a Sqlite database that contains following type of schema:
termcount(doc_num, term , count)
This table contains terms with their respective counts in the document.
like
(doc1 , term1 ,12)
...
3
votes
1answer
51 views
Getting a N-element vector of values evenly spaced from -X to X
In Matlab, one can do
N=1024;
X=1;
dx=2*X/(N-1);
x=-X:dx:X;
and one has an array x including -1 and 1 as endpoints.
The equivalent in numpy:
from numpy import r_
N=1024
X=1
dx=2*X/N
x=r_[-X:X:dx]
...
5
votes
2answers
9k views
curve fitting with python
I'm trying to fit some data and stuff, I know there is a simple command to do this with python/numpy/matplotlib, but I can't find it. I think it is something like
popt,popc = numpy.curvefit(f,x)
...
1
vote
2answers
50 views
cython running slower than numpy for distance calculation
I'm trying to learn cython; however, I must be doing something wrong. This little piece of test code is running about 50 times slower than my vectorized numpy version of it. Can someone please tell me ...
0
votes
0answers
32 views
Lists of arrays for APIs needing flexible data arguments using numpy/scipy
I'm currently trying to improve the API for the scikits.bootstrap bootstrap confidence interval estimation package. The basic function, ci, takes as input a data array and a statistic function to run ...
2
votes
1answer
47 views
How to substitute symbol for matrix using symPy and numPy
I'm trying to substitute two symbols in my equation for the matrix form of each of them.
I created a commutator function which formed my expression:
t, vS, = sy.symbols('t, vS', commutative = ...
1
vote
1answer
35 views
scipy: Evaluate the most likely value and confidence of a bayesian network
I have a bayesian network of two prior distributions (A and B) and one posterior distribution (C|A,B). How, in scipy, would I find the most likely value of C?
Secondarily, how would I calculate the ...
1
vote
2answers
37 views
Using the heapq function 'nlargest' to find the peaks of an FFT and their corresponding frequencies in python
I am using an FFT to look at the distortion I have on an output signal for an IC tester i am designing. I have two arrays, one containing the sampled frequencies, and the other containing the ...
26
votes
4answers
20k views
How to check which version of Numpy I'm using?
How can I check which version of Numpy I'm using? I'm using Mac OS X 10.6.1 Snow Leopard.


