I'm working with data that is not normal distributed. I have applied the common methods: logs and square roots in order to transform the data and then treat it with an ARIMA model so I can make a forecast.
What I have tried is:
set.seed(123)
y<-rexp(200)
yl<-log(y+1)
shapiro.test(yl)
trans<-(y-mean(y))/sd(y)
shapiro.test(trans)
This methods are failing the test of normality, I would like to ask if there are another options to transform data into normal data in R.