I have a vector which contains several values e.g.
a <- runif(8760)
I wish to perform continuous wavelet transform to the data but the data is required or preferred to be normally distributed. Can anyone provide any information regarding how I could transform the data to be normally distributed. With my own data set I have tried to standardise the data and perform a log transformation but these dont seem to help.
I have tried:
b <- log(a)
c <- scale(a)
ainto normal, you could apply a CDF. If you need data from a normal distribution, why don't you usernorm? – Roman Luštrik Jun 26 '12 at 6:44