Tagged Questions
2
votes
1answer
28 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 ...
0
votes
1answer
43 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 ...
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 ...
0
votes
1answer
33 views
Scipy Guassian_kde Nomalisation
I've been using scipy.stats.gausian_kde but have a few questions about its output. I've plotted the normalised histogram and the gaussian_kde plot on the same graph. Why are the y-values so vastly ...
1
vote
1answer
91 views
Making a custom probability distribution to draw random samples from in SciPy
I'm looking to sum up an arbitrary number of probabilistic distributions of things using a montecarlo type simulation. I'd like to randomly sample continuous distributions of something and add them to ...
2
votes
2answers
63 views
Scipy Pearson's correlation returning always 1
I am using Python library scipy to calculate Pearson's correlation for two float arrays. Returned value for coefficient is always 1.0, even if arrays are different. For example:
[-0.65499887 ...
0
votes
2answers
77 views
numpy cov (covariance) function, what exactly does it compute?
I assume numpy.cov(X) computes the sample covariance matrix as:
1/(N-1) * Sum (x_i - m)(x_i - m)^T (where m is the mean)
I.e sum of outer products. But nowhere in the documentation does it ...
1
vote
1answer
121 views
How to perform two-sample one-tailed t-test with numpy/scipy
In R, it is possible to perform two-sample one-tailed t-test simply by using
> A = c(0.19826790, 1.36836629, 1.37950911, 1.46951540, 1.48197798, 0.07532846)
> B = c(0.6383447, 0.5271385, ...
1
vote
1answer
246 views
Fitting lognormal distribution using Scipy vs Matlab
I am trying to fit a lognormal distribution using Scipy. I've already done it using Matlab before but because of the need to extend the application beyond statistical analysis, I am in the process of ...
-4
votes
1answer
79 views
Test if a die is fair in python [closed]
I know I can test if a coin is fair in Python using:
scipy.stats.binom_test(numHeads,numHeads+numTails,0.5)
If I have a 6-sided die, how can I test if the die is fair?
0
votes
1answer
87 views
scipy.stats.kde and scipy.stats.kstest
How can I use scipy.stats.kde.gaussian_kde and scipy.stats.kstest in a conformal way?
For example, the code:
from numpy import inf
import scipy.stat
my_pdf = scipy.stats.kde.gaussian_kde(sample)
...
1
vote
1answer
216 views
Spearman rank correlation in Python with ties
I want to compute the spearman rank correlation [1] using python and most likely scipys implementation (scipy.stats.spearmanr).
The data at hand looks e.g., the following way (dictionaries):
{a:0.3, ...
4
votes
2answers
280 views
Poisson confidence interval with numpy
I'm trying to put Poisson continuous error bars on a histogram I'm making with matplotlib, but I can't seem to find a numpy function that will given me a 95% confidence interval assuming poissonian ...
2
votes
1answer
147 views
Is there a python statistics library that runs on app engine [closed]
I'd like to use app engine for a project, but the Scipy library is not compatible.
Is there a statistics library that works on app engine?
Specifically, I'm looking for an implementation of the ...
0
votes
4answers
336 views
Test for statistically significant difference between two arrays
I have two 2-D arrays with the same shape (105,234) named A & B essentially comprised of mean values from other arrays. I am familiar with Python's scipy package, but I can't seem to find a way ...
2
votes
0answers
72 views
Infinite time taken by scipy hypergeom function for some particular values
I am using the hypergeom function from scipy.stats. Although it works for most of the parameter, it do not yeild anything for some particular parameters. For eg. the following works,
from scipy ...
0
votes
1answer
396 views
Python SciPy chisquare test returns different p value from Excel and LibreOffice
After reading a recent blog post about an application of the Poisson distribution, I tried reproducing its findings using Python's 'scipy.stats' module, as well as Excel/LibreOffice 'POISSON' and ...
2
votes
1answer
102 views
How do I solve for x with a known function in equation using numpy/scipy?
I have a lognorm distribution from scipy and its parameters are known.
import scipy
log_norm_obj = scipy.stats.lognorm([log_mu], shape=sigma)
I need to solve for a x which satisfies the following ...
3
votes
2answers
470 views
Quantile-Quantile Plot using SciPy
How would you create a qq-plot using Python?
Assuming that you have a large set of measurements and are using some plotting function that takes XY-values as input. The function should plot the ...
11
votes
5answers
532 views
Estimating small time shift between two time series
I have two time series, and i suspect that there is a time shift between them, and i want to estimate this time shift.
This question has been asked before in:
Find phase difference between two ...
0
votes
1answer
196 views
Plotting Pearson Correlation Coefficient with matplotlib
I've been able to use the pearsonr function in sciPy to get the correlation coefficient and now want to plot the result onto a scatter plot using matplotlib.
I looked through the doc's but can't see ...
3
votes
1answer
541 views
Pearson correlation coefficient 2-tailed p-value meaning [closed]
from the sciPy library I used: scipy.stats.stats import pearsonr to calculate the correlation coefficient for two arrays and I got a value of: (0.80751532276005755, 0.19248467723994242).
I thought ...
3
votes
1answer
800 views
Calculating Pearson correlation
I'm trying to calculate the Pearson correlation coefficient of two variables. These variables are to determine if there is a relationship between number of postal codes to a range of distances. So I ...
2
votes
1answer
193 views
Why is my Kurtosis function not producing the same output as scipy.stats.kurtosis?
I have a homework problem in which I'm supposed to write a function for Kurtosis as descirbed here:
The theta in the denominator is the standard deviation (square-root of the variance) and the ...
1
vote
1answer
96 views
Scipy's normaltest Function Seems Inaccurate
Using scipy.stats.norm to generate a random sample, then running that through scipy.stats.normaltest produces wildly varying outputs:
from scipy.stats import norm, normaltest
...
2
votes
1answer
108 views
Lognormal Random Numbers Centered around a high value
I am trying to create random numbers from a lognormal distribution using numpy/scipy.
The mean is given as 2000 and sigma as 800.
If I create my random valus using ...
4
votes
1answer
495 views
How to calculate error for polynomial fitting (in slope and intercept)
Hi I want to calculate errors in slope and intercept which are calculated by scipy.polyfit function. I have (+/-) uncertainty for ydata so how can I include it for calculating uncertainty into slope ...
1
vote
2answers
163 views
Lognormal distributed variable, find likelihood
Using scipy, I'd like to get a measure of how likely it is that a random variable was generated by my log-normal distribution.
To do this I've considered looking at how far it is from the maximum of ...
3
votes
3answers
2k views
Calculate probability in normal distribution given mean, std in Python
How to calculate probability in normal distribution given mean, std in Python? I can always explicitly code my own function according to the definition like the OP in this question did: Calculating ...
1
vote
1answer
213 views
Linregress giving incorrect result
I am a big fan of Stack Overflow and am sure my question will be answered here. I am using Scipy to do linear regression. But at a particular set of inputs I am not getting the correct output. (Python ...
0
votes
2answers
151 views
code is working but with a 'DeprecationWarning' -scipy.stats
I wrote this code to calculate the mode and standard deviation for a large sample:
import numpy as np
import csv
import scipy.stats as sp
import math
r=open('stats.txt', 'w') #file with results
...
0
votes
1answer
152 views
Processing randomly distributed experimental data using ks_2samp in scipy
I have two different sets of randomly distributed experimental data. I have to check weather both are from same data set or not. I wish to apply 2 sample KS test using scipy in python.
I don't ...
0
votes
1answer
87 views
Requirements for implementing _rvs in subclass of scipy.stats.rv_continuous?
I'd like to implement a particular distribution in terms of the scipy.stats.rv_continuous class, and I'd like to provide my own implementation of _rvs but I don't understand what
arguments come into ...
3
votes
2answers
2k views
P-value from Chi sq test statistic in Python
I have computed a test statistic that is distributed as a chi square with 1 degree of freedom, and want to find out what P-value this corresponds to using python.
I'm a python and maths/stats newbie ...
1
vote
2answers
564 views
Python/Cython: Using SciPy with Cython
The Cython tutorial shows a nice example of how to use Numpy with Cython. However, I have code that uses the scipy.stats package and when attempting to compile the code, I errors such as:
...
2
votes
3answers
222 views
Truncating SciPy random distributions
Does anyone have suggestions for efficiently truncating the SciPy random distributions. For example, if I generate random values like so:
import scipy.stats as stats
print stats.logistic.rvs(loc=0, ...
4
votes
3answers
886 views
multivariate linear regression in python?
I can't seem to find any python libraries that do multivariate regression. The only things I find only do simple regression. I need to regress my dependent variable (y) against several independent ...
4
votes
1answer
308 views
Python package that supports weighted covariance computation
Is there a python statistical package that supports the computation of weighted covariance (i.e., each observation has a weight) ? Unfortuantely numpy.cov does not support weights.
Preferably ...
3
votes
1answer
446 views
grouped pandas DataFrames: how do I apply scipy.stats.sem to them?
I know that I can apply numpy methods by doing the following:
dataList is a list of DataFrames (same cols/rows).
testDF = (concat(dataList, axis=1, keys=range(len(dataList)))
.swaplevel(0, ...
4
votes
2answers
730 views
Goodness of fit tests in SciPy
I'm new to Python and coming from the R world. I'm trying to fit distributions to sample data using SciPy and having good success. I can make distribution.fit(data) return sane results. What I've been ...
4
votes
3answers
3k views
In Python, how can I calculate correlation and statistical significance between two arrays of data?
I have sets of data with two equally long arrays of data, or I can make an array of two-item entries, and I would like to calculate the correlation and statistical significance represented by the data ...
2
votes
2answers
238 views
Multivariate distributions with Python
Problem
I have computed a probability density function that depends on two variables. I want to use this multivariate distribution to generate some random numbers that occur with a probability ...
4
votes
1answer
3k views
Two-sample Kolmogorov-Smirnov Test in Python Scipy
I can't figure out how to do a Two-sample KS test in Scipy.
After reading the documentation scipy kstest
I can see how to test where a distribution is identical to standard normal distribution
from ...
2
votes
3answers
375 views
Python fit a normal curve to data: matplotlib / scipy and graph
I'm trying to fit a normalized curve to my data. I have thousands of datapoints in a csv file, and I'm using matplotlib to plot it. I'm not sure which statistic to use exactly. I was thinking that ...
1
vote
1answer
412 views
Apply kurtosis to a distribution in python
I have a dataset which is in the format of
frequency, direction, normalised power spectral density, spread, skewness, kurtosis
I am able to visualise the distribution of a specific record using the ...
5
votes
3answers
646 views
harmonic mean in python
The Harmonic Mean function in Python (scipy.stats.hmean) requires that the input be positive numbers. For example:
from scipy import stats
print stats.hmean([ -50.2 , 100.5 ])
results in:
...
6
votes
3answers
716 views
Calculating pdf of Dirichlet distribution in python
I'd like to calculate the pdf for the Dirichlet distribution in python, but haven't been able to find code to do so in any kind of standard library. scipy.stats includes a long list of distributions ...
2
votes
1answer
125 views
Multi-Variate Linear Regression R-squared without storing input data
Anyone have a good reference for how to do a multivariate ordinary linear regression without saving the input data (and get the R-squared of the result). The use case is a data set with too many rows ...
4
votes
3answers
2k views
Quantile/Median/2D binning in Python
do you know a quick/elegant Python/Scipy/Numpy solution for the following problem:
You have a set of x, y coordinates with associated values w (all 1D arrays). Now bin x and y onto a 2D grid (size ...
1
vote
2answers
296 views
PDF and CDF without SciPy
I need to use probability and cumulative density functions in a Python application I'm programming. SciPy offers both, but it seems too hefty of a dependency for just those two functions. PDF seems ...

