| Transformation | GenStat Expression |
| Linear | m * (X + c)
|
| Power | (X + c)**m
|
| Square root | (X + c)**0.5
|
| Log (base 10) | log10(X + c)
|
| Log (base e) | log(X + c)
|
| Antilog (base 10) | 10**X - c
|
| Antilog (base e) | exp(X) - c
|
| Exponential | exp(X + c)
|
| Logit | log(X / (c - X))
|
| Inverse logit | c / (1 + exp(-X))
|
| Double log | log(-log(X/c))
|
| Inverse double log | c * exp(-exp(X))
|
| Complementary log-log | log(-log(1 - (X/c)))
|
| Inverse complementary log-log | c * (1 - exp(-exp(X)))
|
| Accumulation | value in unit i of result is the sum of the first i units of X
|
| Differencing | value in unit i of result is set to xi − xi-c
|