SciPy is an open source library of algorithms and mathematical tools for the Python programming language.
1
vote
1answer
58 views
Error for my plot and calculation of FWHM
I found and copied this code to get the FWHM from Finding the full width half maximum of a peak (2nd to the last answer). My code below uses my own data. The plot generated looks wrong as my data ...
1
vote
1answer
67 views
OLS in Python with Dummy Variables - Best Solution?
I have a problem I am trying to solve in Python, and I have found multiple solutions (I think) but I am trying to figure out which one is the best. I am hoping to choose libraries that will be ...
1
vote
3answers
58 views
Double the length of a python numpy array with new values
I have an array of 5 numbers:
A = [10, 20, 40, 80, 110]
I need to create a new array with a 10nth length numbers.
The extra numbers could be the average number between the two # of A.
for ...
0
votes
1answer
113 views
Distance for each intersected points of a line in increased order in 2D coordinate
I am calculating the distance between A(x0,y0) and B(x1,y1) points in a 2D (x,y).
I have the following code which represents intersected points of each cell in the given two boundary points, A(x0,y0) ...
-1
votes
1answer
41 views
Plotting a Pandas DataSeries.GroupBy
I am new to python and pandas, and have the following DataFrame.
How can I plot the DataFrame where each ModelID is a separate plot, saledate is the x-axis and MeanToDate is the y-axis?
Attempt
...
1
vote
2answers
81 views
Something wrong with my fft() in python
I have a function I am supposed to plot the amplitude spectrum of between 10MHz and 11.4MHz. This is the function: cos(6.72*(10**7*t) + 3.2*sin(5*(10**5*t))) I know what the plot is supposed to ...
2
votes
1answer
51 views
Iterate over array of arrays with scipy.weave.inline
I have a numpy.ndarray of dtype object containing exclusively other arrays of different length. I have C code, that does some computations with the nested arrays, but I'm not sure how to grab the ...
2
votes
2answers
127 views
Pandas error: 'DataFrame' object has no attribute 'loc'
I am new to pandas and is trying the Pandas 10 minute tutorial with pandas version 0.10.1. However when I do the following, I get the error as shown below. print df works fine.
Why is .loc not ...
0
votes
0answers
22 views
Using scipy.weave and GSL ODE
After a previous question I am trying to solve some ODEs using GSL. The complicating factor is I want it written in python and so am trying to get scipy.weave to help.
Using the standard GSL ODE ...
0
votes
1answer
43 views
Bandpass filter not respecting cutoff
I'm using this filter in python:
def bandpass_firwin(ntaps, lowcut, highcut, fs, window='hamming'):
nyq = 0.5 * fs
taps = firwin(ntaps, [lowcut, highcut], nyq=nyq, pass_zero=False,
...
0
votes
1answer
26 views
What does Grid_scores_ mean in Scikit-learn's GridSearchCV
After performing a grid search with sklearn.grid_search.GridSearchCV() on a linear_model.Ridge to find a suitable alpha, we can get the grid scores using clf.grid_scores_.
What do the numbers in the ...
0
votes
1answer
49 views
Optimizing clustering in Python
I wrote my own clustering algorithm (bad, I know) for my problem. It works well, but could work faster.
Algorithm takes list of values (1D) as in input, and works like this:
For each cluster, ...
0
votes
1answer
69 views
Python function which will call a 1D vector values
I have the next sequence of numbers of A array( is an array 1D )
-1.7654142212e-06
7.0737426918e-07
1.63230254789e-06
1.88255344022e-06
5.00966829007e-06
1.88631278169e-06
-4.08751917695e-06
...
0
votes
1answer
24 views
numpy piecewise function claiming lists are not same size
I'm trying to write a function to pass a variable into a piecewise function, I have:
def trans(a):
np.piecewise(a, [(a<.05) & (a>=0),
(a<.1) & (a>= .05),
...
1
vote
2answers
84 views
Python MemoryError when doing fitting with Scikit-learn
I am running Python 2.7 (64-bit) on a Windows 8 64-bit system with 24GB memory. When doing the fitting of the usual Sklearn.linear_models.Ridge, the code runs fine.
Problem: However when using ...
1
vote
1answer
69 views
TypeError: unsupported operand type(s) for -: 'numpy.ndarray' and 'numpy.ndarray'
I am trying to calculate the Mean Squared Error of the predictions y_train_actual from my sci-kit learn model with the original values salaries.
Problem: However with ...
2
votes
2answers
70 views
How many features can scikit-learn handle?
I have a csv file of [66k, 56k] size (rows, columns). Its a sparse matrix. I know that numpy can handle that size a matrix. I would like to know based on everyone's experience, how many features ...
0
votes
1answer
33 views
Enable Python to utilize all cores for fitting scikit-learn models
I'm running python 2.7 with ipython on Windows 8 64bit with a system that has 4 cores. When fitting a scikit-learn model, the CPU usage is 50%, 25% from python and 25% from Chrome.
Why is chrome ...
3
votes
1answer
85 views
finding inflection points in spline fitted 1d data
I have some one dimensional data and fit it with a spline. Then I want to find the inflection points (ignoring saddle points) in it. Now I am searching the extrema of its first derivation by using ...
1
vote
0answers
16 views
Evaluate SmoothBivariateSpline over a grid
I have three columns of unstructured data and would like to do a bivariate spline fit over them. I am not yet too good with classes in Python so I don't understand exactly how to do this. To show my ...
2
votes
1answer
57 views
Am I using scipy.linalg.solve_discrete_lyapunov correctly
I'm using scipy.linalg.solve_discrete_lyapunov to compute matrix P from
MT PM - P = -Q where M = A - BK and Q = I
(see below and also see Lyapunov Equation). However, for the computed P I get MT PM ...
2
votes
1answer
27 views
How can I define a vectroized function to make a list of 2 by 2 matrices?
I'm trying to define a function that return a 2 by 2 matrix. Specifically, I have:
def f(d,n):
return scipy.mat([[1,d/n],[0,1]])
This works fine when d and n are scalar input. But if d and n ...
5
votes
3answers
99 views
Speed up random matrix computation
I am creating random Toeplitz matrices to estimate the probability that they are invertible. My current code is
import random
from scipy.linalg import toeplitz
import numpy as np
for n in ...
1
vote
1answer
52 views
Creating matrix for scipy.cluster.hierarchy.fclusterdata
I am trying to run a cluster analysis on a list of coordinates. I'd like to use scipy.cluster.hierarchy.fclusterdata. How do I create an appropriate n by m data matrix from my coordinates?
My list ...
2
votes
1answer
51 views
Variables in NumPy
In NumPy, I'm trying to represent differential equations of the form: y' = p(t)y + g(t), where p(t) is an nxn matrix and and g(t) is an nx1 matrix. Something like:
y' = [[1,5], [2,1]] + [[e^t], [1]]
...
0
votes
2answers
105 views
Bandpass filter in python
I'm trying to get a bandpass filter with a 128-point Hamming window with cutoff frequencies 0.7-4Hz in python. I get my samples for my signal from images. (1 sample = 1 image). The fps often changes.
...
0
votes
1answer
44 views
One-sided Wilcoxon signed-rank test using scipy
I would like to perform a one-sided wilcoxon rank test to my paired data, as I'm interested if one sample is significantly greater than the other.
Scipy offers
scipy.stats.wilcoxon(x,y)
to perform ...
2
votes
1answer
104 views
Numerical Integration over a Matrix of Functions, SymPy and SciPy
From my SymPy output I have the matrix shown below, which I must integrate in 2D. Currently I am doing it element-wise as shown below. This method works but it gets too slow (for both ...
0
votes
1answer
35 views
Find the Most common term in Scikit-learn classifier [duplicate]
I'm following the example in Scikit learn docs where CountVectorizer is used on some dataset.
Question: count_vect.vocabulary_.viewitems() lists all the terms and their frequencies. How do you sort ...
1
vote
0answers
74 views
Scipy reads in wav file, writes out white noise
I'm an all-around uber-noob when it comes to Python and Scipy, so bear with me.
I have a piece of code that reads in a wav file (2 second guitar chord recorded on proTools and exported as a 44100 Hz ...
0
votes
1answer
38 views
Unable to download Scikit-learn dataset using Python 3.3
While following the Sklearn tutorials using Python 3.3 on Windows 8, we had to fetch a newsgroups dataset. However after downloading, iPython throws the error below. Is this a bug?
Code executed
...
0
votes
0answers
68 views
installing issues for SciPy on Mac
Installing issues for scipyp on Mac.
My Mac is 10.8, gcc is 4.2.1, gfortran is GNU Fortran (GCC) 4.2.1.
After I downloaded the package and typed sudo python setup.py build,
then it will output:
...
4
votes
2answers
101 views
Find out if matrix is positive definite with numpy
I need to find out if matrix is positive definite. My matrix is numpy matrix. I was expecting to find any related method in numpy library, but no success.
I appreciate any help.
1
vote
1answer
22 views
Scikit-learn's fetch does not download dataset
From iPython, I executed
from sklearn.datasets import fetch_olivetti_faces
The command seem to execute immediately with In [43] appearing infront of the command.
However I do not find anything in ...
4
votes
2answers
153 views
Test if matrix is invertible over finite field
I would like to test if a particular type of random matrix is invertible over a finite field, in particular F_2. I can test if a matrix is invertible over the reals using the following simple code.
...
0
votes
0answers
77 views
cx_freeze and scipy: “ImportError: cannot import name vode”
i am trying to create an executable from my python script. My script runs fine, but after freezing it, starting the .exe gives me the following error:
...
0
votes
1answer
34 views
how to use dorpi5 or dop853 in python
I have looked through scipy.integrate.ode but I am unable to find out how to actually use these integration methods, dorpi5 and dop853.
Additionally, there was only one post on stackoverflow that I ...
1
vote
2answers
43 views
python numpy - optimize chisq function by removing explicit python loop?
I'm trying to evaluate a chi squared function, i.e. compare an arbitrary (blackbox) function to a numpy vector array of data. At the moment I'm looping over the array in python but something like this ...
1
vote
1answer
72 views
Blitz code produces different output
I want to use weave.blitz to improve the performance of the following numpy code:
def fastIteration(self):
g = self.grid
nx,ny = g.ux.shape
uxold = g.old_ux
ux = g.ux
ux[0:,1:-1] ...
1
vote
1answer
57 views
Is there a better function for finding edges on a list of common nodes?
I have a list of nodes and each node has measured the wifi field strength from other points. The list will be in the form:
RSSI_list = [[node4, node3, RSSI], [node7, node5, RSSI]] #etc (it will be ...
0
votes
3answers
66 views
Optimize constants in differential equations in Python
Okay so how would i approach to writing a code to optimize the constants a and b in a differential equation, like dy/dt = a*y^2 + b, using curve_fit? I would be using odeint to solve the ODE and then ...
4
votes
2answers
109 views
scipy: fast interpolation of regularly sampled 3D data with different intervals in x,y, and z
I have some volumetric imaging data consisting of values sampled on a regular grid in x,y,z, but with a non-cubic voxel shape (the space between adjacent points in z is greater than in x,y). I would ...
1
vote
1answer
69 views
Fitting parabolic shape to data (is it possible to use logic statements with SciPy CurveFit?)
I’m trying to fit data with a parabola shape of the form:
Y(x) = a(1 – (x/b)^2) for |x| < b .......
Y(x) = 0 otherwise
And I’ve added in two extra degrees of freedom so the parabola can be ...
2
votes
2answers
70 views
Find geometry (shapes) from node cloud
I am working on some code that needs to recognize some fairly basic geometry based on a cloud of nodes. I would be interested in detecting:
plates (simple bounded planes)
cylinders (two node loops)
...
1
vote
0answers
62 views
Can scipy.optimize.brute() optimize vector functions?
Looking through the documentation of scipy.optimize.brute(), it is not clear to me whether it supports vector functions, and if so, how the range is specified for each coordinate.
For example, ...
0
votes
2answers
41 views
Unpacking parameters for a simulation
I do a lot of ODE simulations and I work with a few python parameter optimization tools (e.g. scipy.optimize.minimize, emcee) that require parameters to be passed in as a list. This makes them very ...
1
vote
1answer
79 views
minimum distance from an array [closed]
I followed this method from my other post [distance between a point and a curve[(find the distance between a point and a curve python) but something is wrong. The values aren't accurate.
I plotted ...
0
votes
1answer
83 views
find the distance between a point and a curve python
How can I find the closet distance between my trajectory and (384400,0,0)?
Also, how can I the distance from (384400,0,0) to the path at time t = 197465?
I understand that the arrays have the data ...
0
votes
2answers
87 views
plotting a sphere in python for an orbital trajectory
How can I put a sphere of radius 1737 at the location of (384400,0,0)?
This sphere would be the moon in my trajectory.
Everything else with the code is fine, I just don't know how to add a sphere ...
0
votes
0answers
50 views
Python SciPy interpolation - missing functions
I installed SciPy 0.12.0 for Python 2.7 from http://www.lfd.uci.edu/~gohlke/pythonlibs/, but I have just scipy.interp instead of scipy.interpolate functions. It's not what I want, because interp ...

