I had a similar problem. I wanted arksin to convert most of the "logmeantd.ascvr" dataset and approach it like this:
The first make - the data range was converted to b / t -1 and 1 (in this case they were expressed as a percentage):
logmeantd.ascvr[1:12] <- logmeantd.ascvr[1:12] * 0.01
Then apply the square root function, sqrt ():
logmeantd.ascvr[1:12] <- sqrt(logmeantd.ascvr[1:12])
Finally, apply the sine function of the arc, asin ():
logmeantd.ascvr[1:12] <- asin(logmeantd.ascvr[1:12])
* note in this case I excluded the MEAN variable of my dataset because I wanted to apply the log function, log () to it:
logmeantd.ascvr$MEAN <- log(logmeantd.ascvr$MEAN)
XNSTT source share