The normal-distribution tag has no wiki summary.
0
votes
0answers
3 views
Measuring tails of a normal distribution - kurtosis and variance
So it seems that kurtosis is the way to measure how heavy the tails are in a normal distribution. But I was wondering if variance could also be a way of measuring how heavy the tails are. So I'm ...
0
votes
0answers
20 views
Java- Numerical method for integrating normal distribution?
Code:
(Yes, I'm aware its inefficient and generally quite bad. Just wonderint why it doesnt work.) Maths may be wrong, but most likely the coding is. Any help would be nice.
public class ...
0
votes
1answer
44 views
Frequencies for a normal distribution
How to get frequencies that reflect a normal distribution for each integer 1...400.
Values 1 and 400 would have the minimum frequency of 1, what would the frequencies be for the other values?
Also, ...
-1
votes
0answers
40 views
Sampling Normal Distributions [duplicate]
It has been a while since I learned how to work with R. For someone in practice, it should be easy to help me.
I would like to plot sampling distributions from normal distributions for variing N and ...
0
votes
0answers
26 views
Examples for running the ziggurat method
In their seminal paper "The Ziggurat Method for Generating Random Variables", Marsaglia and Tsang implement their algorithm in C with inline definitions in this script. I'm interested in using the ...
0
votes
1answer
44 views
Python numpy.random.normal only positive values
I want to create a normal distributed array with numpy.random.normal that only consists of positive values.
For example the following illustrates that it sometimes gives back negative values and ...
2
votes
1answer
50 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 ...
0
votes
1answer
24 views
Upside-down Gaussian distribution
I'm looking for a function that is an upside-down function of Gaussian. So when x = 0, y should be 0. On both sides (positive and negative) the function should converge to 1. Can anyone point me in ...
1
vote
2answers
119 views
Finding normal distributions overlap using double Integral (dblquad) in MATLAB. Strange behaviour
I am calculating the overlap of two normal bivariate distribution using the following function
function [ oa ] = bivariate_overlap_integral(mu_x1,mu_y1,mu_x2,mu_y2)
%calculating pdf. Using x as ...
4
votes
6answers
141 views
Finding mean of standard normal distribution in a given interval
I want to find mean of standard normal distribution in a given interval.
For example, if I divide standard normal distribution into two ([-Inf:0] [0:Inf]) I want to get the mean of each half.
...
2
votes
1answer
23 views
normal distribution; iron python
I want the user to specify a range delta, sigma for the spread and the number of random values it should produce.
But what's the best way in Iron Python to produce random values with a normal ...
2
votes
1answer
60 views
Select data based on a distribution in matlab
I have a set of data in a vector. If I were to plot a histogram of the data I could see (by clever inspection) that the data is distributed as the sum of three distributions;
One normal distribution ...
0
votes
1answer
58 views
Random number - Choose seed
because of one project I have to make use of pseudo random numbers with normal distribution.
To this respect, I'm generally putting this down:
nn_u = ...
0
votes
2answers
135 views
turning a uniform distribution into a normal distribution
how do i turn a uniform distribution to a normal distribution
I have Random samples of 2000 numbers between 0 and 1 and I did this for 10 columns
I got the average of all ten columns and put it on ...
0
votes
2answers
117 views
How to calculate probability in normal distribution by Matlab?
I'm new to Matlab and I would appreciate if someone could help.
The problem:
IQ coefficients are Normally distributed with a mean of 100 and a standard deviation of 15. Calculate the probability ...
-1
votes
1answer
102 views
how to separate a bimodal distribution [closed]
I plot values in a chart, and I see a bimodal distribution. I want to treat it as a mixture of two normal distributions, so how can I figure out the means/variance for these two normal distributions ...
3
votes
0answers
120 views
how can I generate a normal distribution with a skew in javascript? [closed]
I need to generate a normal distribution with a skew that fits the following constraints
negativeSigma (minus one standard deviation)
mean (value the distribution is centered upon)
positiveSigma ...
2
votes
3answers
329 views
Transform data to fit normal distribution
I have a rather easy-to-understand question.
I have a set of data and I want to estimate how good this data fit a standard normal distribution. To do so, I start with my code:
[f_p,m_p] = ...
3
votes
2answers
155 views
manipulate data to better fit a Gaussian Distribution
I have got a question concerning normal distribution (with mu = 0 and sigma = 1).
Let say that I firstly call randn or normrnd this way
x = normrnd(0,1,[4096,1]); % x = randn(4096,1)
Now, to ...
-12
votes
1answer
142 views
C ++ Generate 800 Numbers w/ Normal distribution [closed]
I need to generate an array with 800 numbers in normal distribution, something like numbers[800].
1
vote
1answer
241 views
Fit data to normal distribution
I want some data to fit the corresponding Gaussian distribution.
The data is meant to be Gaussian already, but for some filtering reasons, they will not perfectly match the prescribed and expected ...
2
votes
1answer
54 views
Meaning Logarithm Likelihood in Exp. Maximization algorithm
I have implemented the exp. maximization algorithm and it converges and returns the values of mu and sigma correctly, I have checked with various examples.
I have tried to plot the log-likelihood, ...
1
vote
1answer
2k views
Perform a Shapiro-Wilk Normality Test
I want to perform a Shapiro-Wilk Normality Test test. My data is csv format. It looks like this:
> heisenberg
HWWIchg
1 -15.60
2 -21.60
3 -19.50
4 -19.10
5 -20.90
6 -20.70
7 ...
-1
votes
1answer
98 views
QQ Plot not matching hist/normal distr [closed]
I have the following data: http://uploadeasy.net/upload/nsorc.rar
I generated a histogramm, a kernel density and a fitted normal distribution via
hist(alvlloss,breaks = 100, freq=F,main="Histogramm,
...
1
vote
1answer
383 views
R - Plotting two bivariate normals in 3d and their contours respectively
I have been playing around with the MASS package and can plot the two bivariate normal simply using image and par(new=TRUE) for example:
# lets first simulate a bivariate normal sample
library(MASS)
...
0
votes
2answers
43 views
Normal random number by averaging 5 uniform samples?
Looking at some legacy code in our app, found this weird implementation of Normal RNG. I want to swap it for a proper Box-Muller transformation but need some encouragement.
As you can see, it ...
2
votes
1answer
80 views
Custom Algorithm for Exp. maximization in Matlab
I try to write an algorithm which determine $\mu$, $\sigma$,$\pi$ for each class from a mixture multivariate normal distribution.
I finish with the algorithm partially, it works when I set the ...
2
votes
2answers
187 views
random value generator with normal distribution for objective-c
I would like to generate numbers into an array that has normal distribution. Is there any function in objective-c or c that can help to get the result easily without any math?
0
votes
0answers
103 views
Fit Normal Distribution while minimizing chi-squared and find maximum of resultant normal fit
I have been searching for an answer to this question for an hour or so, but I have been struggling to find a concise answer. Essentially my problem is this: I have a discrete distribution of data ...
4
votes
1answer
89 views
Drawing overlayed sideways plots in R
I have the following code, in R.
x = c(rep(2,10),rep(4,10))
y1 = c(5.1,3,4.2,4.1,4.8,4.0,5,4.15,3,4.5)
y2 = c(9.1,8,9.2,8.2,7,9.5,8.8,9.3,10,10.4)
y = c(y1,y2)
...
0
votes
1answer
146 views
Compute probability over a multivariate normal
My question addresses both mathematical and CS issues, but since I need a performant implementation I am posting it here.
Problem:
I have an estimated normal bivariate distribution, defined as a ...
0
votes
1answer
79 views
batch normal distribution test
I am trying to do a batch normal distribution test.
My data looks like:
"Date","Department","Discipline","Employee ID","SumOfBillable Hrs"
"10/09/2012","D","B",50084.00,8.00
...
0
votes
0answers
160 views
Plotting a normal curve on top of a weighted histogram
I have a dataset which requires me to plot a weighted histogram because of the data
gridcellname value avg.temp
Y55X21 4,84 4,09
Y56X17 0 5,34
Y44X44 2,75 ...
-3
votes
1answer
60 views
R - produce data with certain shape between -1 and 1 [duplicate]
I tried to produce data in R that is distributed like on this image:
The values should really lie only between -1 and +1 but less should be between -1 and 0 compared to 0 and +1.
1
vote
4answers
274 views
Random Normal Distribution in Java returns values outside range [duplicate]
Possible Duplicate:
problem with Random.nextGaussian()
I am working to develop small java application to make random normal distribution and give 50 values. I use mean = 0.0 and std = 1.0, ...
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
0answers
112 views
Generate random noise using Cumulative Normal Distribution in Java
I'm trying to generate random noise using Normal Distribution where the formula is - . Now, I know the value of sigma (standard deviation) and mean and the value of x should vary randomly from 0 to 1. ...
-1
votes
2answers
99 views
What does taking the logarithm of a variable mean? [closed]
Question with regards to taking the logarithm of a variable (Statistics Question)
Say you have a bar graph displaying data for an example "Cost of Computer Orders by the Population" and you are ...
-1
votes
1answer
158 views
Probability of sample from a normal distribution in matlab [closed]
I know this might actually be a simple question, but I don't have that much experience with stats in matlab.
I have a normal distribution with a given mu and sigma, I would like to take a random ...
0
votes
1answer
283 views
generating random numbers within cuda kernel
I am writing a cuda program where I need to generate a random variable which would be generated by following a normal distribution. I want the value of the random variable to be limited between 0 to ...
0
votes
2answers
117 views
Computing integrals of correlated Gaussain random variables
Let (X,Y) be a 2-dimensional normal random variable with the 0 mean and the covariance matrix S. Further let Q = [0,1]x[0,1] be a unit square and let us grid it, uniformly each side with N grid ...
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
1answer
174 views
why my boxcox transformation does not result a normal data?
I am trying to deseasonalize a set of monthly water quality data consisting of 10 years. Since Box-Cox transformation may be required to rectify the anomalies like heteroscedasticity and non-normality ...
-2
votes
1answer
246 views
Normal distribtuion calculation in Matlab? [closed]
I try to calculate normal pdf but because I get 0 from covariance matrix determinant all my calculation messed up. How could I deal with that problem> Is there any other approximation method for ...
0
votes
1answer
119 views
One-Sided Hypothesis Test with T-Statistic in R?
I want to test the following hypothesis in R using a t-statistic and compute the p-value:
Null Hypothesis : mu <= 50
Alternate : mu > 50
data = c(52.7, 53.9, 41.7, 71.5, 47.6, 55.1,
...
0
votes
0answers
33 views
Code for normal distribution returns unexpected values [duplicate]
Possible Duplicate:
Implementing Box-Mueller random number generator in C#
I'm using a Box-Muller transform method to generate normally distributed random numbers:
do {
rand1 = ...
0
votes
3answers
47 views
Parallel Normal Distributions
I'm working on a simulation where a large task is completed by a series of independent smaller tasks either in parallel or in series. The smaller task's time of completion follows a normal ...
-1
votes
1answer
269 views
Bivariate Gaussian density function in Numpy and Matplotlib [closed]
How to plot bivariate Gaussian density function in Numpy and Matplotlib using a given mean and covariance matrix? It could be a surface or contour plot. I want a generic solution using mean vector and ...
2
votes
2answers
191 views
Can't add a probability-curve on the histogram
I'm trying do display multiple histograms with one plot with the lattice-package.
That's my code so far:
histogram(~ X1 + X2 + X3 + X4 + X5 + X6 + X7 + X8 + X9 + X10, data=mydata,
type = ...
1
vote
0answers
12 views
How to calculate in PHP, Normal Distribution that exactly matches Excel Result using NORMDIST(x, mean, standard_dev, accumulative) [duplicate]
Possible Duplicate:
Converting a Uniform Distribution to a Normal Distribution
I need to calculate in PHP, Normal Distribution that matches results using Excel Normal Distribution Function ...



