SciPy is an open source library of algorithms and mathematical tools for the Python programming language.
4
votes
1answer
81 views
What is the difference between cholesky in numpy and scipy?
I use Cholesky decomposition to sample random variables from multi-dimension Gaussian, and calculate the power spectrum of the random variables. The result I get from numpy.linalg.cholesky always has ...
0
votes
1answer
56 views
Python Scikit-learn: Empty Vocabulary in TF-IDF
I am using the code given in most up-voted answer to this question (Similarity between two text documents) to calculate TF-IDF between documents. However, I observe that when I run the code WITHOUT ...
1
vote
2answers
48 views
Open a structure of substructures of matlab with python
I have a structure of substructures as an output of a matlab file. Every substructure has four variables from which three are arrays. I would like to access every single value of this data with ...
0
votes
0answers
19 views
Avoid passing all local variables with scipy.weave.inline
Can someone explain this:
Using scipy.weave.inline, I supply a list of variables to make available to the C code I'm calling. But in addition to this, scipy.weave.inline also passes both globals() ...
1
vote
1answer
41 views
How to do operations with two vectors of different format in python
One of my vector is in format scipy.sparse.csr.csr_matrix, the other is numpy.ndarray. I have an experimental code below:
import numpy as np
from scipy.sparse import csr_matrix
x = np.arange(5)+1
y ...
0
votes
1answer
55 views
improving Numpy dot performance by removing arrays copy
Given a matrix QT:
% ipython
Python 2.7.3
In [3]: QT.dtype
Out[3]: dtype('float64')
In [4]: QT.__class__
Out[4]: numpy.ndarray
In [5]: QT.flags
Out[5]:
C_CONTIGUOUS : True
F_CONTIGUOUS ...
2
votes
1answer
90 views
Different results when using sklearn RandomizedPCA with sparse and dense matrices
I am getting different results when Randomized PCA with sparse and dense matrices:
import numpy as np
import scipy.sparse as scsp
from sklearn.decomposition import RandomizedPCA
x = ...
0
votes
1answer
13 views
“image not found” with scipy.stats
Does anybody know what could cause this error with python?
I have scipy installed but when I try to use scipy.stats it complains that "image not found"
1
vote
1answer
51 views
Unable to unwrap image in OpenCV
I am trying to convert an image from cartesian to polar so that I can unravel the image, but I am getting a runtime error. If you are curious how this looks visually, see this example.
Code:
import ...
2
votes
1answer
56 views
1D irregular grid to 1d regular grid
I want to interpolate values in a 1D array from an irregular grid to a regular grid. For example, imagine that the original data has values at irregularly spaced X coordinates:
source_x = ...
2
votes
2answers
54 views
Interpolaton algorithm to correct a slight clock drift
I have some sampled (univariate) data - but the clock driving the sampling process is inaccurate - resulting in a random slip of (less than) 1 sample every 30. A more accurate clock at approximately ...
2
votes
1answer
67 views
scipy.misc.imread creates an image with no size or shape
I'm trying to get scipy.misc.imread to just read in an image and tell me it size, which I've been able to do fine on other computers but it's failing for me on a new Mac:
Python 2.7.4 (default, May ...
2
votes
1answer
51 views
Retrieve value from interpolated function
I am very new to python, and as a project I decided to write my Mathematica project in python to see how it works, hence the code is written in as close a style to Mathematica as possible.
I am ...
4
votes
2answers
71 views
Is there universal if function in numpy?
I have three series. I need to do the following operation element-wise:
Compare values from the first and second series.
If first is larger take arc-sinus of the element from the third series.
...
0
votes
1answer
39 views
How to import a site-package from rJython?
I am trying to call some functions in openopt package for Python from R using the rJython package. I have the NumPy, SciPy, and OpenOpt installed for Python 2.7.4 on my 64 bit windows 7. Importing ...
-3
votes
1answer
49 views
Python: Determine assigned serial port my hardware connected to [closed]
Microcontroller interfacing with Windows PC via USB CDC creating virtual serial port. Windows assign port number randomly depend on availability, USB port and differs from computer to computer. The ...
1
vote
1answer
95 views
Optimizing K (ideal # of clusters) Using PyCluster
I'm using PyCluster's kMeans to cluster some data -- largely because SciPy's kMeans2() produced an insuperable error. Mentioned here. Anyhow the PyCluster kMeans worked well, and I am now attempting ...
2
votes
1answer
60 views
How does numpy.linalg.inv calculate the inverse of an orthogonal matrix?
I'm implementing a LinearTransformation class, which inherits from numpy.matrix and uses numpy.matrix.I to calculate the inverse of the transformation matrix.
Does anyone know whether numpy checks ...
0
votes
1answer
78 views
What is the Python (numpy or scipy or Pandas) equivalent for R's adjboxStats function?
I do use R to get the outliers for data set and I do use this snippet in R and it works like it's advertised to!
library("robustbase")
adjboxStats(c(11232.1, 234.2, 3445532344.3, 34302.3, 203.9, ...
1
vote
0answers
88 views
Is this a bug of scipy RectBivariateSpline?
I am trying to do interpolation as below but the result is seemingly the result of a bug. I want to know if anyone had the same problem.
img: input image (numpy ndrarray) of h-by-w
img data looks ...
0
votes
1answer
125 views
Gensim ImportError in PyCharm: No module named scipy.sparse
I am on Mac OS X 10.8.3 (Mountain Lion) and am trying to run a script in PyCharm. Python 2.7.2 is installed, I have installed Canopy and Gensim. I just do not understand what could be causing the ...
1
vote
1answer
32 views
class method as a model function for scipy.optimize.curve_fit
There is a statement in the manual of curve_fit that
The model function, f(x, ...). It must take the independent variable as the first argument and the parameters to fit as separate remaining ...
2
votes
1answer
114 views
How do I put a constraint on SciPy curve fit?
I'm trying to fit the distribution of some experimental values with a custom probability density function. Obviously, the integral of the resulting function should always be equal to 1, but the ...
1
vote
1answer
114 views
Error when calling scikit-learn using AMD64 build of Scipy on Windows
I am getting this error on this line:
from sklearn.ensemble import RandomForestClassifier
The error log is:
Traceback (most recent call last):
File "C:\workspace\KaggleDigits\KaggleDigits.py", ...
1
vote
1answer
85 views
Update initial condition in ODE solver each time step
I am wanting to solve a system of ODEs where for the first 30,000 seconds, I want one of my state variables to start from the same initial value. After those 30,000 seconds, I want to change the ...
1
vote
1answer
85 views
Reshape sparse matrix efficiently, Python, SciPy 0.12
In another post regarding resizing of a sparse matrix in SciPy the accepted answer works when more rows or columns are to be added, using scipy.sparse.vstack or hstack, respectively. In SciPy 0.12 the ...
3
votes
1answer
56 views
Vectorizing multiple vector-matrix multiplications in NumPy
I am having trouble figuring out how to arrange my axes so I can perform the following operations in a vectorized way.
Essentially I have an array of vectors, an array of matrices, and I want to ...
0
votes
2answers
95 views
Python / Scipy - implementing optimize.curve_fit 's sigma into optimize.leastsq
I am fitting data points using a logistic model. As I sometimes have data with a ydata error, I first used curve_fit and its sigma argument to include my individual standard deviations in the fit.
...
1
vote
1answer
123 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)
...
0
votes
2answers
52 views
get the best features from matrix n X m
I have a X matrix with 1000 features (columns) and 100 lines of float elements and y a vector target of two classes 0 and 1, the dimension of y is (100,1). I want to compute the 10 best features in ...
0
votes
1answer
89 views
Residuals of Random Forest Regression (Python)
When using RandomForestRegressor from Sklearn, how do you get the residuals of the regression? I would like to plot out these residuals to check the linearity.
-1
votes
1answer
48 views
Install exe errors Scipy, MatPlotLib etc [closed]
I am trying to install some Python packages like matplotlib and scipy on my computer in Windows.
I installed Python 3.3 the default way.
It's located at C:/Python33
But some exe's say Python ...
2
votes
1answer
58 views
Python TypeError using Scipy's coo_matrix.todense()
I recently encountered difficulty when converting a coo_matrix to a dense matrix using scipy. I have a dtype float16 sparse matrix and attempt to convert it to a dense matrix. The error complains ...
2
votes
1answer
100 views
How can I use a Pandas data structure to calculate autocorrelation?
I have data in text files that I have successfully parsed into a MultiIndex pandas structure however I don't know if what I have will do what I want it to do.
What I have is a lot of time series data ...
1
vote
0answers
40 views
Parallel numerical integration using python
I would like to numerically integration a function using multiple cpus in python. I would like to do something like:
from scipy.integrate import quad
import multiprocessing
def FanDDW(arguments):
...
3
votes
1answer
132 views
Fourier transform / iterative deconvolution fitting in python using numpy/scipy
I would like to fit a fluorescent lifetime curve. These curves are given by the convolution of the instrument response function (IRF, assumed Gaussian) and a (multi) exponential decay:
Where G is ...
1
vote
0answers
83 views
unable to read some .wav files using scipy.io.wavread.read()
I am trying to read .wav file using scipy.io.wavread. It reads some file properly.
For some files its giving following error...
Warning (from warnings module):
File ...
2
votes
3answers
107 views
How to get euclidean distance on a 3x3x3 array in numpy
say I have a (3,3,3) array like this.
array([[[1, 1, 1],
[1, 1, 1],
[0, 0, 0]],
[[2, 2, 2],
[2, 2, 2],
[2, 2, 2]],
[[3, 3, 3],
[3, 3, 3],
...
0
votes
1answer
64 views
“argument must be a callable function” when using scipy.integrate.quad
I've written some code that enables me to take data from DICOM files and separate the data into the individual FID signals.
from pylab import *
import dicom
import numpy as np
import scipy as sp
...
1
vote
1answer
91 views
Python - R square and absolute sum of squares obtainable by scipy.optimize curve_fit?
I am fitting curves using curve_fit. Is there a way to read out the coefficient of determination and the absolute sum of squares?
Thanks, Woodpicker
0
votes
3answers
143 views
Scipy - netcdf - data types not writing and getting weird numbers
I am trying to write a netcdf file using scipy.
I've copied the example from the scipy website - but when I look at the output, I am getting weird numbers.
I've been trying this for other things as ...
2
votes
1answer
46 views
In scipy.stats rv_continuous has a fit method to find MLEs, but rv_discrete does not. Why?
I would like to find the Maximum Likelihood Estimator for some data that may be governed by a discrete distribution. But in scipy.stats only classes representing continuous distributions have a fit ...
1
vote
1answer
120 views
How to optimize time-stepping algorithm in python?
I have a piece of code which increments a time-step for the so-called Lorenz95 model (invented by Ed Lorenz in 1995). It's normally implemented as a 40-variable model, and displays chaotic behaviour. ...
5
votes
2answers
83 views
Creating a PyCObject pointer in Cython
A few SciPy functions (like scipy.ndimage.interpolation.geometric_transform) can take pointers to C functions as arguments to avoid having to call a Python callable on each point of the input array.
...
3
votes
1answer
81 views
Find Unique Dates in Numpy Datetime Array
I have timeseries data (epoch, values) which i have transformed into (datetime, values), which is stored in Numpy arrays. Now i wish to find the indexes of the first row corresponding to a given day. ...
-1
votes
1answer
29 views
is there any way to use special functions with rasters?
>>> dd=special.kv(0,Raster("adiff_C1.tif"))
Runtime error <type 'exceptions.TypeError'>: ufunc 'kv' not supported for the input types, and the inputs could not be safely coerced ...
2
votes
1answer
49 views
Multiply all columns in a Pandas dataframe together
Is it possible to multiply all the columns in a Pandas.DataFrame together to get a single value for every row in the DataFrame?
As an example, using
df = pd.DataFrame(np.random.randn(5,3)*10)
I ...
2
votes
0answers
35 views
Halt scipy odeint on first error
As I'm developing and testing code, I may make a simple error, like a NameError. When I use scipy.integrate.odeint, odeint will print the error message, but keep integrating for however many timesteps ...
1
vote
2answers
72 views
scipy results linear interpolation results inconsistent
I need to perform linear interpolation on a data containing 'n' independent variables and a dependent variable. I am currently using scipy.interpolate.LinearNDInterpolator for performing the ...
0
votes
2answers
90 views
Parse a Pandas column to Datetime
I have a DataFrame with column named date. How can we convert/parse the 'date' column to a DateTime object?
I loaded the date column from a Postgresql database using sql.read_frame(). An example of ...





