SciPy is an open source library of algorithms and mathematical tools for the Python programming language.
69
votes
5answers
5k views
Relationship between scipy and numpy
scipy appears to provide most (but not all [1]) of numpy's functions in its own namespace. In other words, if there's a function named numpy.foo, there's almost certainly a scipy.foo. Most of the ...
54
votes
10answers
25k views
Principal component analysis in Python
I'd like to use principal component analysis (PCA) for dimensionality reduction. Does numpy or scipy already have it, or do I have to roll my own using numpy.linalg.eigh?
I don't just want to use ...
41
votes
5answers
18k views
Peak-finding algorithm for Python/SciPy
I can write something myself by finding zero-crossings of the first derivative or something, but it seems like a common-enough function to be included in standard libraries. Anyone know of one?
My ...
31
votes
4answers
2k views
Fast tensor rotation with NumPy
At the heart of an application (written in Python and using NumPy) I need to rotate a 4th order tensor. Actually, I need to rotate a lot of tensors many times and this is my bottleneck. My naive ...
30
votes
10answers
27k views
Python: how do I install SciPy on 64 bit Windows?
How do I install SciPy on my system?
Update 1: for the NumPy part (that SciPy depends on) there is actually an installer for 64 bit Windows: numpy-1.3.0.win-amd64-py2.6.msi (is direct download URL, ...
29
votes
1answer
16k views
Read .mat files in Python
Does anyone have successful experience reading binary Matlab .mat files in Python?
(I've seen that scipy has alleged support for reading .mat files, but I'm unsuccessful with it. I installed scipy ...
28
votes
6answers
19k views
Installing scipy with pip
It is possible to install numpy with pip using pip install numpy.
Is there a similar possibility with scipy? (Doing pip install scipy does not work)
Update
The package scipy is now available to be ...
25
votes
2answers
2k views
Experience with using h5py to do analytical work on big data in Python?
I do a lot of statistical work and use Python as my main language. Some of the data sets I work with though can take 20GB of memory, which makes operating on them using in-memory functions in numpy, ...
23
votes
3answers
15k views
sorting arrays in numpy by column
How can I sort an array in numpy by the nth column? e.g.
a = array([[1,2,3],[4,5,6],[0,0,1]])
I'd like to sort by the second column, such that I get back:
array([[0,0,1],[1,2,3],[4,5,6]])
...
22
votes
2answers
8k views
How to create a density plot in matplotlib?
In R I can create the desired output by doing:
data = c(rep(1.5, 7), rep(2.5, 2), rep(3.5, 8),
rep(4.5, 3), rep(5.5, 1), rep(6.5, 8))
plot(density(data, bw=0.5))
In python (with ...
22
votes
2answers
511 views
Python double free error for huge datasets
I have a very simple script in Python, but for some reason I get the following error when running a large amount of data:
*** glibc detected *** python: double free or corruption (out): ...
20
votes
3answers
1k views
sparse 3d matrix/array in Python?
In scipy, we can construct a sparse matrix using scipy.sparse.lil_matrix() etc. But the matrix is in 2d.
I am wondering if there is an existing data structure for sparse 3d matrix / array (tensor) in ...
19
votes
4answers
4k views
Python web hosting: Numpy, Matplotlib, Scientific Computing
I write scientific software in Numpy/Scipy/Matplotlib. Having developed applications on my home computer, I am now interested in writing simple web applications. Example: user uploads image or audio ...
17
votes
10answers
7k views
Java Scientific Packages similar to SciPy?
I've been looking around the internet for a Java scientific package that is "similar" to Scipy. The only thing I have really found is JScience but it seems not to offer plotting and such. Does ...
16
votes
2answers
14k views
How to read csv into record array in numpy?
I wonder if there is a direct way to import the contents of a csv file into a record array, much in the way that R's read.table(), read.delim(), and read.csv() family imports data to R's data frame? ...
16
votes
2answers
19k views
How to normalize a NumPy array in Python?
After doing some processing on an audio or image array, it needs to be normalized within a range before it can be written back to a file. This can be done like so:
# Normalize audio channels to ...
16
votes
1answer
5k views
binning data in python with scipy/numpy
is there a more efficient way to take an average of an array in prespecified bins? for example, i have an array of numbers and an array corresponding to bin start and end positions in that array, and ...
16
votes
2answers
618 views
Is there an “enhanced” numpy/scipy dot method?
Problem
I would like to compute the following using numpy or scipy:
Y = A**T * Q * A
where A is a m x n matrix, A**T is the transpose of A and Q is an m x m diagonal matrix.
Since Q is a diagonal ...
15
votes
6answers
7k views
Python scipy needs BLAS?
numpy.distutils.system_info.BlasNotFoundError:
Blas (http://www.netlib.org/blas/) libraries not found.
Directories to search for the libraries can be specified in the
...
15
votes
8answers
2k views
Open Source Enthought Python Alternative
I used Enthought's python distribution as a graduate student for data analysis and really enjoyed it. But I've recently taken a job which takes away my ability to use it.
I prefer python for ...
15
votes
6answers
4k views
Fitting data to distributions?
I am not a statistician (more of a researchy web developer) but I've been hearing a lot about scipy and R these days. So out of curiosity I wanted to ask this question (though it might sound silly to ...
15
votes
4answers
4k views
STFT and ISTFT in Python
Is there any general-purpose form of short-time Fourier transform with corresponding inverse transform built into SciPy or NumPy or whatever?
There's the pyplot specgram function in matplotlib, which ...
15
votes
5answers
3k views
Scientific libraries for Lua?
Are there any scientific packages for Lua comparable to Scipy?
Thanks for your time and help :)
14
votes
3answers
4k views
How to check blas/lapack linkage in numpy/scipy?
I am builing my numpy/scipy environment based on blas and lapack more or less based on this walk through.
When I am done, how can I check, that my numpy/scipy functions really do use the previously ...
14
votes
2answers
3k views
Has anyone used SciPy with IronPython?
I've been able to use the standard Python modules from IronPython, but I haven't gotten SciPy to work yet. Has anyone been able to use SciPy from IronPython? What did you have to do to make it work?
...
14
votes
2answers
8k views
Inverse Distance Weighted (IDW) Interpolation with Python
The Question:
What is the best way to calculate inverse distance weighted (IDW) interpolation in Python, for point locations?
Some Background:
Currently I'm using RPy2 to interface with R and it's ...
14
votes
3answers
5k views
Scipy sparse… arrays?
So, I'm doing some Kmeans classification using numpy arrays that are quite sparse-- lots and lots of zeroes. I figured that I'd use scipy's 'sparse' package to reduce the storage overhead, but I'm a ...
13
votes
6answers
8k views
How to plot empirical cdf in matplotlib in Python?
How can I plot the empirical CDF of an array of numbers in matplotlib in Python? I'm looking for the cdf analog of pylab's "hist" function.
One thing I can think of is:
from scipy.stats import ...
13
votes
6answers
2k views
Efficient method of calculating density of irregularly spaced points
I am attempting to generate map overlay images that would assist in identifying hot-spots, that is areas on the map that have high density of data points. None of the approaches that I've tried are ...
13
votes
4answers
3k views
Iterating through a scipy.sparse vector (or matrix)
I'm wondering what the best way is to iterate nonzero entries of sparse matrices with scipy.sparse. For example, if I do the following:
from scipy.sparse import lil_matrix
x = lil_matrix( (20,1) )
...
13
votes
1answer
4k views
plotting results of hierarchical clustering ontop of a matrix of data in python
How can I plot a dendrogram right on top of a matrix of values, reordered appropriately to reflect the clustering, in Python? An example is in the bottom of the following figure:
...
13
votes
3answers
800 views
how to shade points in scatter based on colormap in matplotlib?
I'm trying to shade points in a scatter plot based on a set of values (from 0 to 1) picked from one of the already defined color maps, like Blues or Reds. I tried this:
import matplotlib
import ...
13
votes
4answers
3k views
Improving Numpy Performance
I'd like to improve the performance of convolution using python, and was hoping for some insight on how to best go about improving performance.
I am currently using scipy to perform the convolution, ...
13
votes
1answer
1k views
Continuous mutual information in Python
[Frontmatter] (skip this if you just want the question):
I'm currently looking at using Shannon-Weaver Mutual Information and normalized redundancy to measure the degree of information masking ...
12
votes
1answer
14k views
Histogram Matplotlib
So I have a little problem. I have a data set in scipy that is already in the histogram format, so I have the center of the bins and the number of events per bin. How can I now plot is as a histogram. ...
12
votes
6answers
5k views
Calculate Matrix Rank using scipy
I'd like to calculate the mathematical rank of a matrix using scipy. The most obvious function numpy.rank calculates the dimension of an array (ie. scalars have dimension 0, vectors 1, matrices 2, ...
12
votes
2answers
2k views
What are the differences between Pandas and NumPy+SciPy in Python?
They both seem exceedingly similar and I'm curious as to which package would be more beneficial for financial data analysis.
12
votes
2answers
9k views
How to plot a plane in Matlab or scipy/matplotlib
I feel like I should know this, but somehow I'm drawing a blank for the last 30 minutes...
How would one go plotting a plane in matlab or scipy from a normal vector and a point? I keep wanting to use ...
12
votes
3answers
3k views
What is the difference between numpy.fft and scipy.fftpack?
Is the later just a synonym of the former, or are they two different implementations of FFT? Which one is better?
12
votes
5answers
11k views
How to delete columns in numpy.array
I would like to delete selected columns in a numpy.array . This is what I do:
n [397]: a = array([[ NaN, 2., 3., NaN],
.....: [ 1., 2., 3., 9]])
In [398]: print a
[[ NaN 2. 3. ...
12
votes
6answers
6k views
How to make scipy.interpolate give an extrapolated result beyond the input range?
I'm trying to port a program which uses a hand-rolled interpolator (developed by a mathematician colleage) over to use the interpolators provided by scipy. I'd like to use or wrap the scipy ...
12
votes
3answers
4k views
Chi-Squared test in Python
I've used the following code in R to determine how well observed values (20, 20, 0 and 0 for example) fit expected values/ratios (25% for each of the four cases, for example):
> ...
12
votes
3answers
3k views
How to elementwise-multiply a scipy.sparse matrix by a broadcasted dense 1d array?
Suppose I have a 2d sparse array. In my real usecase both the number of rows and columns are much bigger (say 20000 and 50000) hence it cannot fit in memory when a dense representation is used:
...
12
votes
3answers
4k views
Fastest 2D convolution or image filter in Python
Several users have asked about the speed or memory consumption of image convolutions in numpy or scipy [1, 2, 3, 4]. From the responses and my experience using Numpy, I believe this may be a major ...
12
votes
1answer
3k views
Confusion between numpy, scipy, matplotlib and pylab
Numpy, scipy, matplotlib, and pylab are common terms among they who use python for scientific computation.
I just learn a bit about pylab, and I got a lot of confusion.
Whenever I want to import ...
12
votes
2answers
367 views
Is there an equivalent of the matlab 'idealfilter' for Python in Scipy (or other libraries)?
I am looking for an equivalent of the time series idealfilter that is implemented in Matlab, for Python.
My goal is to implement an ideal filter using Discrete Cosine Transform as is used in the ...
11
votes
2answers
2k views
Prevent anti-aliasing for imshow in matplotlib
When I use matplotlib's imshow() method to represent a small numpy matrix, it ends up doing some smoothing between pixels. Is there any way to disables this? It makes my figure's misleading in ...
11
votes
2answers
3k views
Reordering matrix elements to reflect column and row clustering in naiive python
I'm looking for a way to perform clustering separately on matrix rows and than on its columns, reorder the data in the matrix to reflect the clustering and putting it all together. The clustering ...
11
votes
4answers
3k views
Anything like SciPy in Ruby?
Looking further into the differences between Python and Ruby, is there a Ruby equivalent to SciPy, or what other scientific math gems are available for Ruby?
11
votes
3answers
553 views
Scientific computing in Python for MATLAB programmers
I was wondering if anybody knows of a good tutorial or introductory text on scientific computing on Python/SciPy for MATLAB programmers.
I was thinking of something along the lines of David ...



