For my research I need to obtain a series of densities, however, I am encountering some problems.
The first problem is perhaps very simple, but the answer eludes me. Let's say I have an observation from a time series, x=0.001 together with estimated mean μ=0.0001 and standard deviation σ=0.4. Using R:
dnorm(0.001, 0.0001, 0.4)
z=(0.001-0.0001)/0.4
dnorm(z, 0, 1)
where z is the standardized variable. Why are the result different?
The second issue is connected to Hansen's Skew-t distribution. Let's add the skew λ=0.1 and shape η=5 parameters. When plugging in the all the parameters into the pdf (I take z which takes μ and σ into account) I obtain 0.4832, but when I use the sgt
package in R:
dsgt(0.001, 0.0001, 0.4, 0.1, p = 2, 5, mean.cent=TRUE, var.adj=TRUE)
Iobtain 1.075749. Inputting the standardized variable z and μ=0 and σ=1 into the above yields 0.5425881.
Can you please explain the reason why the values are different?
Answer
You know that :
X∼N(μ,σ2).
Z=X−μσ.
Var(Z)=1σ2Var(X)=1σ2σ2=1.
So that Z∼N(0,1).
However note that the pdf evaluated for X and Z have different domains.
The following figure illustrate it :
- X is plotted in a) and Z in b)
- Their respective normal pdf are plotted in c) and d). Note that their integrals equals 1.
- In e) I applied the pdf of Z on the (wrong) original domain , notice that the integral is different of 1.
- To obtain the correct pdf on the original domain we need to scale the pdf(Z) by (1/σ), this is done in f). The integral is ok and equal to 1.
The vertical line is evaluated at X= 1.5, you see that the density differs accordingly the domain.
So in your example you also need to scale the density by (1/σ) :
(1/sigma)*dnorm(z, 0, 1) = dnorm(0.001, 0.0001, 0.4)
To summarize when you use a normal transformation you need to scale the density by (1/σ) to get the correct density in the original domain.
You can find the matlab code used in this answer here.
I think you second issue and some of your others questions are related to this problem.
No comments:
Post a Comment