2
votes
1answer
31 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
0answers
30 views

PyMC regression of many regressions?

I haven't been using PyMC for long, but I was pleased at how quickly I was able to get a linear regression off the ground (this code should run without modification in IPython): import pandas as pd ...
0
votes
0answers
37 views

Smoothing of log-distributed periodogram

I use the lomb-scargle periodogram to output information about chemical species in distinct time periods. This produces a distribution that is skewed heavily, with the majority of points and variance ...
1
vote
1answer
47 views

Drawing from certain probabilities in Gaussian Normal Multivariate Distribution in numpy

I have the code and picture of the output listed below but I want to take random samples from these spheres within the specific standard deviations that have been plotted. The variable sdwith is used ...
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
42 views

Is there python packages for training loglinear model?

Does anyone know if there is any existing package in python to train loglinear model? I have a dataset with 2000 variables and 1000 records. I am looking to use loglinear model to estimate ...
0
votes
1answer
55 views

How to build groups with read_csv()?

I have a csv files following this layout : Finances and enterprises Mortgages Mortgages constituted Unidades:Capital loaned (millions euros) ,Total,,RUSTIC,,URBAN,,-Urban. Dwellings,,-Urban. ...
3
votes
3answers
61 views

Given a list of uneven probabilities, what is chance of at least one occurring? [closed]

I'm writing a Python program that has a list of probabilities. Each probability represents a catastrophic outcome of an event: # doing six different events, the array is the risk of each having a ...
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 ...
1
vote
0answers
89 views

Normalization in multiple-linear regression

I have a data set for which I would like build a multiple linear regression model. In order to compare different independent variable I normalize them by their standard deviation. I used ...
2
votes
2answers
64 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
78 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 ...
0
votes
3answers
67 views

re-scaling the values between given maximum and minimum, where max is positive and min is negative

I want the re-scale an array of values (both positive and negative floating point values), so that the values lies between say -5 to +5 or say -3 to +2. How can I scale it down. Is there any specific ...
0
votes
0answers
61 views

What statistics module for python supports one way ANOVA with post hoc tests (Tukey, Scheffe or other)?

I have tried looking through multiple stats modules for python but can't seem to find any that support one away ANOVA post hoc tests.
1
vote
1answer
61 views

Statistical Scaling of autocorrelation using numpy.fft

It could well be i am making myself look very stupid just now but is the following the correct way to get interval[1,-1] scaled output from fft based autocorrelation? The scaling should be what ...
1
vote
1answer
125 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, ...
0
votes
1answer
79 views

how can I plot a histogram using random.expovariate() PYTHON

I have a question where it shows customers entering a bar at a rate of 7 per hour, the question states i NEED to use random.expovariate() and generate a histogram showing 100 inter-arrival times. So ...
0
votes
1answer
79 views

How can I perform a 2-way repeated measures anova using statsmodels?

I found this example, which explains how to perform a 2-way ANOVA. I was wondering how to do the same for a repeated-measures design. I did see this question, but I cannot assume independence of my ...
3
votes
1answer
86 views

Python implementation of statistical Sweep operator

I am learning some techniques for doing statistics with missing data from a book (Statistical Analysis with Missing Data by Little and Rubin). One particularly useful function for working with ...
1
vote
2answers
71 views

python library for identifying article topic

I have a large collection of articles, 80.000 and I want to extract those that are about one topic. Is there a python library or script in which i can input a manually chosen sample of articles about ...
1
vote
1answer
55 views

is there any code statistics tool for python, like counting function lengh in line?

i want to find out python functions with line length > 80(e.g.) Any tools to do it? Further i may need to find which functions are[not] called in a run. simple is better.
2
votes
2answers
155 views

calculating mean and standard deviation of the data which does not fit in memory using python [duplicate]

I have a lot of data stored at disk in large arrays. I cant load everything in memory altogether. How one could calculate the mean and the standard deviation?
1
vote
1answer
247 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
80 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?
1
vote
1answer
133 views

rpy2 / R issue in loess function via Python?

I'm trying to call the R function loess via Rpy2 in Python on this datafile: http://filebin.ca/azuz9Piv0z8/test.data It works when I use a subset of the data (the first 1000 points) but when I try to ...
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) ...
0
votes
2answers
84 views

Calculating the Fisher criterion in Python

Is there a python module that when given two vectors x and y, where y is a two-class (0,1), it calculates the Fisher criterion, as shown in the formula here ...
1
vote
3answers
151 views

Generating a mixture of binomial distributions

I want to generate a mixture of binomial distribution. Why I need it is because I want to have a normal discrete mixture of gaussian distributions. Is there any scipy library available for it or can ...
0
votes
1answer
87 views

How to do zonal statistics on raster file based on polyon in Python?

I have a raster file and a polygon shapefile. I like to get the mean of the raster file of the area the polygon covers. I like to do this in a python standalone script. So QGIS and Starspan do not ...
0
votes
2answers
64 views

calculate percentage of strings instead of statistics

I would like to calculate the percentage of each letter in my file instead of the number. How can I modify the following code? stat_file = open(filename, 'w') one_letter = ...
0
votes
1answer
93 views

statistics bootstrap library in Python? [closed]

Is there a statistics bootstrap library in Python? I would like to have functionality similar to what is offered in R bootstrap: http://statistics.ats.ucla.edu/stat/r/library/bootstrap.htm ...
6
votes
1answer
330 views

Fit two normal distributions (histograms) with MCMC using pymc?

I am trying to fit line profiles as detected with a spectrograph on a CCD. For ease of consideration, I have included a demonstration that, if solved, is very similar to the one I actually want to ...
1
vote
2answers
251 views

Compute a confidence interval from sample data

I have sample data which I would like to compute a confidence interval for, assuming a normal distribution. I have found and installed the numpy and scipy packages and have gotten numpy to return a ...
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
281 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 ...
3
votes
2answers
196 views

Sampling histograms such that the sum over the sample is uniform

I have a list of items from which I want to randomly sample a subset, but each item is paired with a histogram over D bins and I want to sample the items in such a way that the summed histogram is ...
3
votes
1answer
132 views

Design of Experiments (DoE) in Python?

Is there any module or package available in Python for using Design of Experiments (DoE) methods?
-3
votes
1answer
248 views

statistical analysis (ARIMA, VAR) Pandas, R [closed]

I've organized the hight frequency time series data with python and module pandas. I would like to perform statistical analysis with ARIMA models, VAR etc.. Should I use RPy or jump directly to R or ...
1
vote
3answers
154 views

Is there a Python module to open SPSS files?

Is there a module for Python to open IBM SPSS (i.e. .sav) files? It would be great if there's something up-to-date which doesn't require any additional dll files/libraries.
1
vote
1answer
97 views

Python product of e^(normal distributed variable) does not equal 1.0?

The average of the sum of a normally distributed variable with a mean of 0 is zero. That works. The product of e to the power of a normally distributed variable with a mean of 0 should be 1. But when ...
0
votes
1answer
233 views

random.expovariate(rate) and numpy.random.poisson(quantity) yield the same average value, but the distributions are vastly different. Why is this?

I'm making some modifications to the load testing framework that we're using throughout the company, and this is a question for which I would love to have an answer. I was under the impression that ...
1
vote
2answers
158 views

Number of target values in the one prediction

I use python's scikit-learn module for predicting some values in the CSV file. I am using Random Forest Regressor to do it. As example, i have 8 train values and 3 values to predict - which of codes i ...
0
votes
0answers
267 views

What is the best Statistics Module for Python? [closed]

I am trying to write some software for Python which would allow me to do things like inferring best fits (including non linear fits such as log fits, polynomial fits, sin/cos fits etc) significance ...
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 ...
1
vote
1answer
121 views

Do built in POS Taggers within NLTK have a Confidence Value for it's decisions?

I am working with a basic tagger from the NLTK package. I was previously using OpenNLP's tagging system. I am switching because NLTK has more pre-built modules that I could use later on in my project. ...
3
votes
1answer
231 views

Separate mixture of gaussians in Python

There is a result of some physical experiment, witch is represented as histogram [i, amount_of(i)]. I suppose that result can be estimated by a mixture of 4..6 gaussian functions. Is there a package ...
0
votes
5answers
2k views

Fitting empirical distribution to theoretical ones with Scipy (Python)?

INTRODUCTION: I have a list of more than 30 000 values ranging from 0 to 47 e.g.[0,0,0,0,..,1,1,1,1,...,2,2,2,2,..., 47 etc.] which is the continuous distribution. PROBLEM: Based on my distribution ...
5
votes
3answers
513 views

Fitting distributions, goodness of fit, p-value. Is it possible to do this with Scipy (Python)?

INTRODUCTION: I'm a bioinformatician. In my analysis which I perform on all human genes (about 20 000) I search for a particular short sequence motif to check how many times this motif occurs in each ...
22
votes
5answers
12k views

Statistics: combinations in Python

I need to compute combinatorials (nCr) in Python but cannot find the function to do that in 'math', 'numyp' or 'stat' libraries. Something like a function of the type: comb = ...

1 2 3 4 5 6