I have a dataset contains hourly PM10 concentrations for 90 days of 83 sites. That means I have total (90*24) set hourly data each contains 83 observations. I want plot semi-variogram for every hour (total 90*24 sem- variogram) then I want to compare variogram parameters (Range, psill, nugget) among all hours.
So, suppose now I have total (90*24) different dataset. among them, some data set are already in normal distribution. The dataset which are not in normal distribution, I want make them normal by log-transformation. Because, as far as I know, normal distribution is important for kriging analysis.
Naturally, the form of range,sill, nugget value obtained from actual dataset and log-transformed dataset are different. The range, sill, nugget value obtained from variogram analysis of log-transformed dataset are comparatively small as data were transformed into log. So, I need to back transform these range ,sill, nugget obtained from log-transformed dataset as I want to compare the range,sill,nugget value among all hours (90*24).
I am using gstat package in R for variogram analysis. How can I back transform the range,sill and nugget value obtained from log-transformed dataset?
[If you need, I can upload a sample dataset and my R code. please let me know if you have any other query]