Skip to content
Prev 22656 / 29559 Next

Gaussian transformation

one way is the rank transform:

x = rgamma(100, 0.1)
hist(x)
y = qnorm((order(x)/(length(x) + 0.5)))
qqnorm(y)

but transforming your conditionally simulated values back will be
tricky. And I'm not sure about the 0.5.
On 04/28/2015 06:09 PM, Carlo Innocenti wrote: