Tagged Questions
SciPy is an open source library of algorithms and mathematical tools for the Python programming language.
38
votes
6answers
6k views
When to choose R vs. SciPy?
What are some advantages and disadvantages to doing statistical analyses in SciPy vs. R? They seem to have been designed with opposite philosophies (plain old library vs. DSL). What are some rules ...
27
votes
5answers
939 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 ...
24
votes
4answers
1k 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 ...
17
votes
5answers
8k 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 ...
15
votes
6answers
9k 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 ...
14
votes
8answers
12k 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, ...
13
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?
...
12
votes
1answer
261 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 ...
12
votes
2answers
774 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, ...
12
votes
4answers
2k 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, ...
10
votes
2answers
168 views
Python, Scipy: Building triplets using large adjacency matrix
I am using an adjacency matrix to represent a network of friends which can be visually interpreted as
Mary 0 1 1 1
Joe 1 0 1 1
Bob 1 1 0 ...
10
votes
3answers
201 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 ...
10
votes
5answers
402 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 ...
10
votes
4answers
872 views
numpy: learning resources
What book(s) or other resources for learning numpy would you recommend to someone who has lots of experience coding in Python and a fair amount of experience working with both MATLAB and R?
10
votes
6answers
2k 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 ...
10
votes
2answers
486 views
Can some explain this strange behavior of the hypergeometric distribution in scipy?
I am running Python 2.6.5 on Mac OS X 10.6.4 (this is not the native version, I installed it myself) with Scipy 0.8.0. If I do the following:
>>> from scipy.stats import hypergeom
...
10
votes
2answers
4k 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 ...
10
votes
1answer
1k 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:
...
10
votes
3answers
3k 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]])
...
10
votes
10answers
4k 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 ...
9
votes
2answers
154 views
Artefacts from Riemann sum in scipy.signal.convolve
Short summary: How do I quickly calculate the finite convolution of two arrays?
Problem description
I am trying to obtain the finite convolution of two functions f(x), g(x) defined by
To achieve ...
9
votes
4answers
608 views
Cell segmentation and fluorescence counting in Python
How can I segment cells from an image taken on a microscope, along the lines of what was done here in Matlab?
http://blogs.mathworks.com/steve/2006/06/02/cell-segmentation/
Also, if I take multiple ...
9
votes
2answers
1k views
plotting 3d scatter in matplotlib
I have a collection of Nx3 matrices in scipy/numpy and I'd like to make a 3 dimensional scatter of it, where the X and Y axes are determined by the values of first and second columns of the matrix, ...
9
votes
2answers
2k 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 ...
9
votes
1answer
497 views
Scientific Programming Stack for Clojure
I currently use Python for most of my programming, but I'm interested in learning Clojure. What libraries do I need to reproduce the functionality I have with scipy, numpy, and matplotlib? Is there ...
9
votes
2answers
2k 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 ...
8
votes
1answer
323 views
Numpy: Multiplying a matrix with a 3d tensor — Suggestion
I have a matrix P with shape MxN and a 3d tensor T with shape KxNxR. I want to multiply P with every NxR matrix in T, resulting in a KxMxR 3d tensor.
P.dot(T).transpose(1,0,2) gives the desired ...
8
votes
7answers
2k views
Enthought Python, Sage, or others (in Unix clusters)
I have access to a cluster of Unix machines, but they don't have the software I need (numpy, scipy, matplotlib, etc), so I have to install them by myself (I don't have root permissions, either, so ...
8
votes
3answers
2k 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 ...
8
votes
2answers
1k 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 ...
8
votes
4answers
4k 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 ...
8
votes
2answers
7k 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 ...
7
votes
4answers
233 views
Methods for entering equations while programming in C/C++ , Python or Fortran
I am writing a code which had long mathematical equations with many trigonometric and other identities. Is there a way of visualising the same expression in latex and making a C or python expression ...
7
votes
2answers
176 views
Equivalent of Matlab's cluster quality function?
Matlab has a nice silhouette function to help evaluate the number of clusters for k-means. Is there an equivalent for Python's numpy/scipy as well?
7
votes
2answers
565 views
Find phase difference between two (inharmonic) waves
I have two datasets listing the average voltage outputs of two assemblies of neural networks at times t, that look something like this:
A = [-80.0, -80.0, -80.0, -80.0, -80.0, -80.0, -79.58, -79.55, ...
7
votes
4answers
279 views
Efficiently generate a lattice of points in python
Help make my code faster: My python code needs to generate a 2D lattice of points that fall inside a bounding rectangle. I kludged together some code (shown below) that generates this lattice. ...
7
votes
3answers
881 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 ...
7
votes
1answer
579 views
matplotlib - extracting data from contour lines
I would like to get data from a single contour of evenly spaced 2D data (an image-like data).
Based on the example found in a similar question: How can I get the (x,y) values of the line that is ...
7
votes
6answers
801 views
Should i switch to Python? [closed]
I recently have been considering switching to the Python programming language. Currently, Matlab is the language of choice in my department for rapid development and prototyping of code. It’s very ...
7
votes
8answers
443 views
Python/Numpy: Convert list of bools to unsigned int
What is the fastest (or most "Pythonic") way to convert
x = [False, False, True, True]
into 12? (If there is such a way.)
What if x were instead a numpy.array of bools? Is there a special command ...
7
votes
3answers
1k 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:
...
7
votes
5answers
3k 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 ...
7
votes
1answer
308 views
problem with hierarchical clustering in Python
I am doing a hierarchical clustering a 2 dimensional matrix by correlation distance metric (i.e. 1 - Pearson correlation). My code is the following (the data is in a variable called "data"):
from ...
7
votes
2answers
1k views
Incremental PCA
Lately, I've been looking into an implementation of an incremental PCA algorithm in python - I couldn't find something that would meet my needs so I did some reading and implemented an algorithm I ...
7
votes
2answers
1k views
Python to MATLAB: exporting list of strings using scipy.io
I am trying to export a list of text strings from Python to MATLAB using scipy.io. I would like to use scipy.io because my desired .mat file should include both numerical matrices (which I learned to ...
7
votes
5answers
3k 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. ...
7
votes
3answers
2k 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?
7
votes
2answers
1k views
Does anyone have example code of using scipy.stats.distributions?
I am strggling to figure out how to use the scipy.distributions package and wondered if anyone can post some example code for me. It appears to do everything I need, I just can't figure out how to ...
6
votes
1answer
109 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 ...
6
votes
2answers
114 views
Efficient structure for element wise access to very large sparse matrix (Python/Cython)
I'm looking for an efficient data structure to represent a very large matrix of integers in Python/Cython with focus on element-wise operations.
I'm currently building a model that requires a lot of ...