Top "Scipy" questions

SciPy is an open source library of algorithms and mathematical tools for the Python programming language.

Import Error: No module named numpy

I have a very similar question to this question, but still one step behind. I have only one version of …

python python-3.x numpy import scipy
How do I read CSV data into a record array in NumPy?

I wonder if there is a direct way to import the contents of a CSV file into a record array, …

python numpy scipy genfromtxt
Read .mat files in Python

Is it possible to read binary MATLAB .mat files in Python? I've seen that SciPy has alleged support for reading .…

python matlab file-io scipy mat-file
Moving average or running mean

Is there a SciPy function or NumPy function or module for Python that calculates the running mean of a 1D …

python numpy scipy moving-average
Calculating Pearson correlation and significance in Python

I am looking for a function that takes as input two lists, and returns the Pearson correlation, and the significance …

python numpy statistics scipy
What does .shape[] do in "for i in range(Y.shape[0])"?

I'm trying to break down a program line by line. Y is a matrix of data but I can't find …

python numpy matplotlib scipy
Installing SciPy with pip

It is possible to install NumPy with pip using pip install numpy. Is there a similar possibility with SciPy? (Doing …

python installation scipy pip
Sorting arrays in NumPy by column

How can I sort an array in NumPy by the nth column? For example, a = array([[9, 2, 3], [4, 5, 6], [7, 0, 5]]) I'd like to sort …

python arrays sorting numpy scipy
Plotting a fast Fourier transform in Python

I have access to NumPy and SciPy and want to create a simple FFT of a data set. I have …

python numpy scipy fft
ImportError: No module named scipy

I am using Python 2.7 and trying to get PyBrain to work. But I get this error even though scipy is …

python python-2.7 scipy pybrain