Tagged Questions
0
votes
2answers
56 views
How can I overlay 2 normal distribution curves on the same plot?
I'm brand new to R, and I'm facing a problem without much in- class resources. I need to do something that I'm sure is very simple. Can someone point me in the right direction? This is my task:
...
-1
votes
0answers
11 views
Confidence interval for statistics other than mean [closed]
Can we get an approximate value for confidence intervals for statistics other than mean (eg. 75%tile, median, etc) without bootstrapping? And is there anyway to generalize that for any kind of ...
2
votes
1answer
48 views
Sample from half a Gaussian distribution
Suppose n = N(0,1) is a normal distribution. In MATLAB, when the randn(1,1) function is used, a sample is extracted from n.
However, I have a different objective: I would like to sample from the ...
3
votes
1answer
43 views
Density of a Two-Piece Normal (or Split Normal) Distribution
Is there a density function for the two-piece Normal distribution:
on CRAN? Thought I would check before I code one. I have checked the distribution task view. It is not listed there. I have looked ...
0
votes
1answer
50 views
MATLAB: Taking sample with same number of values from each class
I have a full dataset of lets say 50000 observations which are assigned to 16 classes.
I now want to draw a Sample of let's say 70% of the full data, but I want MATLAB to take the same number of ...
1
vote
3answers
147 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 ...
-1
votes
1answer
83 views
Distribute integers for tag cloud weighting [closed]
I have a list of words that I want to display in a web page as a tag cloud. Each word has a corresponding 'weight' which determines how big the word should appear in the tag cloud.
Let's say that ...
0
votes
0answers
110 views
Comparison of Entropy and Distribution of Bytes in Compressed/Encrypted Data
I have some question which occupies myself for a while.
The entropy test is often used to identify encrypted data. The entropy reaches its maximum when the bytes of the analyzed data are distributed ...
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
224 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 ...
3
votes
1answer
459 views
Compute the multivariate normal CDF in Java
Does anyone know of a reliable, accurate library to compute the multivariate normal (MVN) CDF in Java? I'm looking for something like MATLAB's mvncdf function. I need to be able to do it for ...
0
votes
0answers
57 views
I have this code for Normal Distribution in Matlab but it doesn't work [duplicate]
Possible Duplicate:
my Matlab code doesn’t give me the correct results .How can i fix it it
I have this code for Normal Distribution in Matlab but it doesn't work. Could anybody explain me ...
0
votes
2answers
297 views
How to produce the following random variables? [closed]
Using MATLAB, you have to start with a uniform distribution between (0,1). You need to generate the following sequences of random variables:
1.Rayleigh distributed random variable. (a=0, b=1).
...
2
votes
2answers
106 views
Distribution of bytes within jpeg files
when observing compressed data, I expect an almost uniformely distributed byte stream. When using the chi square test for measure the distribution, I get this result e.g. for ZIP-files and other ...
2
votes
2answers
110 views
Distributions and p-values in python
I have a big list of numbers, and I would like to create a distribution out of this data, plot it, then find the p-value for every number in my list with regards to the distribution.
Is it possible ...
5
votes
2answers
473 views
How do I compute the Inverse gaussian distribution from given CDF?
I want to compute the parameters mu and lambda for the Inverse Gaussian Distribution given the CDF.
By 'given the CDF' I mean that I have given the data AND the (estimated) quantile for the data I.e.
...
3
votes
2answers
242 views
Generate 3 uniform random variables that sum to 0
I want to generate three random variables a, b and c such that (i) a+b+c=0; and (ii) each one is uniformly distributed in (-1,1).
The two-variable version is easy: a=2*rand()-1; b=-a. (Note: rand() ...
0
votes
0answers
139 views
Measure the uniformity of distribution of points in a 2D square
I am currently running into this problem: I have a 2D square, and have a set of points inside it, say, 1000 points. I need a way to see if the distribution of points inside the square are spread out ...
0
votes
2answers
454 views
C++ Normal Distribution [duplicate]
Possible Duplicate:
erf(x) and math.h
Best library for statistics in C++?
I am wondering if there is any standard way to implement a cumulative normal distribution function in C++. Or, is ...
0
votes
1answer
180 views
how to find a distribution of values in dataset and generate random values based on this distribution?
I have a dataset of 100 cases. Each case has a class {I,II,III,IV,V} and a value A and V, each class appears exactly 20 times in the dataset:
Class A V
5 2 3
1 3 5
3 2 3
...
0
votes
1answer
241 views
Test for a logistic distribution in R
I have a set of data and I'd like to know whether this data set has a logistic distribution.
When I made a histogram of my data set (see the histogram on ...
1
vote
1answer
103 views
Pick a random item from a list based on the distance from a point?
I am writing a game server in Python with the help of Twisted. I have a Map class which generates the map for the game. In my game I have a central point, with rings of items every certain distance ...
0
votes
0answers
134 views
How to sample from joint distribution given conditional distributions
You are given a set of random variables X1,...Xn that may take any values in the range 1..M. Some variables depend on others - there are no cycles of dependencies and there is at least one variable ...
0
votes
0answers
73 views
Does bathtub shaped distribution represent non-stationary request pattern?
I have the data of inter-arrival times of vehicles. When I plot the data, I get a graph similar to bathtub shape.
The figure shows the mean inter-arrival time per hour. In my work, inter-arrival ...
0
votes
3answers
611 views
Function to transform empirical distribution to a uniform distribution in Matlab?
I know the procedure of transforming one distribution to another by the use of CDF. However, I would like to know if there is existing function in Matlab which can perform this task?
My another ...
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 ...
3
votes
2answers
3k views
Fitting a distribution to data - MATLAB
I am trying to fit a distribution to some data I've collected from microscopy images. We know that the peak at about 152 is due to a Poisson process. I'd like to fit a distribution to the large ...
2
votes
2answers
262 views
C++ - critical values probability distribution
were can I find reliable code for critical values for probability distributions? For instance, F critical values for the fisher test...
?
Thanks for any relevant reference.
0
votes
1answer
87 views
How many samples should be taken to capture the mean and variance of the original set with given error? [closed]
I have a set S of N real numbers. I wanna calculate the mean m variance v of S. But since N is too large, I do not want to use all of the numbers. Instead, I would like to sample n numbers uniformly ...
0
votes
1answer
43 views
Random variates from fMultivar doesn't match density function
I am trying to use the fMultivar package to plot histogram of t distribution and show that the corresponding density function matches the histogram.
The problem is that the histogram doesn't seem to ...
0
votes
1answer
94 views
How can I prove the experiment data follows heavy-tail distribution?
I have several test results of server response delay. According to our theory analysis, the delay distribution should have heavy-tail behavior. But how could I prove that the test result does follow ...
0
votes
1answer
62 views
Find the period in a random distribution
I have objects which are randomly distributed in the X axis. The objects have a periodic (m) distribution with a slight variation of their position around multiples of m.
The graph here shows a ...
1
vote
0answers
39 views
Implementing empirical distributions using the ParallelColt API
I'm wondering if anyone has some experience with using empirical distributions in the ParallelColt API?
I'm struggling to find some example references on:
the differences between the classes ...
1
vote
1answer
367 views
How to use ChebyShev's Inequality in R [closed]
I have a statistical question in R and I was hoping to use Chebyshev inequality theorem, but I don't know how to implement it.
Example:
Imagine a dataset with a nonnormal distribution, I need to be ...
-1
votes
4answers
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 ...
4
votes
2answers
505 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 ...
4
votes
2answers
799 views
R: How to fit a large dataset with a combination of distributions?
To fit a dataset of real-valued numbers (x) with one distribution, we can use MASS as follows either the gamma or Student's t distribution:
fitdistr(x, "gamma")
or
fitdistr(x2, "t")
What if I ...
0
votes
2answers
1k views
Arbitrary distribution -> Uniform distribution (Probability Integral Transform?)
I have 500,000 values for a variable derived from financial markets. Specifically, this variable represents distance from the mean (in standard deviations). This variable has a arbitrary distribution. ...
3
votes
1answer
2k views
skew normal distribution in scipy
Does anyone know how to plot a skew normal distribution with scipy?
I supose that stats.norm class can be used but I just can't figure out how.
Furthermore, how can I estimate the parameters ...
3
votes
2answers
362 views
Can one extend the functionality of PDF, CDF, FindDistributionParameters etc in Mathematica?
I've started doing more and more work with the new Mathematica statistics and data analysis features.
I attended the "Statistics & Data Analysis with Mathematica" online seminar on Tuesday ...
0
votes
1answer
416 views
analysing wind data with R [closed]
Hi i am analaysing wind data for estimating energy from a wind turbine.
I have taken 10 years of wind data and graphed a histogram;
my second stage was to fit a Weibull distribution to the data.
I ...
1
vote
3answers
2k views
Why p-value is 0 when testing the distribution
I wanna test the distribution of a sample, I have tried serveral test like kstest.But I always got the result of p-value=0. I wanna know why.Your answer is greatly appreciated!
1
vote
1answer
601 views
Generating random values from non-normal and correlated distributions
I have a random variable X that is a mixture of a binomial and two normals (see what the probability density function would look like (first chart))
and I have another random variable Y of similar ...
5
votes
1answer
2k views
Generate Random Number Based on Beta Distribution using Boost
I am trying to use Boost to generate random numbers according to the beta distribution using C++. I have seen many examples online for generating random numbers according to distributions in ...
0
votes
3answers
1k views
Generation of uniformly distributed random noise
I've been working on generating Perlin noise for a map generator of mine. The problem I've run into is that the random noise is not distributed normally, and is more likely a normal distribution of ...
8
votes
4answers
14k views
Cumulative Normal Distribution Function in C/C++
I was wondering if there were statistics functions built into math libraries that are part of the standard C++ libraries like cmath. If not, can you guys recommend a good stats library that would have ...
6
votes
1answer
2k views
How do I use chi square distribution with C++ Boost library?
I've checked the examples in the Boost website, but they are not what I'm looking for.
To put it simple, I want to see if a number on a die is favored, using 600 rolls, so the average appearances of ...
7
votes
3answers
10k views
Test if a data distribution follows a Gaussian distribution in MATLAB
I have some data points and their mean point. I need to find whether those data points (with that mean) follows a Gaussian distribution. Is there a function in MATLAB which can do that kind of a test? ...
