r: rth raw moment of the distribution, defaults to 1.
truncation: lower truncation parameter, defaults to 0.
shape, rate, scale: shape, rate and scale of the distribution with default values of 2 and 1 respectively.
lower.tail: logical; if TRUE (default), moments are E[xr∣X≤y], otherwise, E[xr∣X>y]
Returns
Provides the truncated rth raw moment of the distribution.
The zeroth truncated moment is equivalent to the probability function pgamma(2,shape=2,rate=1) mgamma(truncation=2)
The (truncated) first moment is equivalent to the mean of a (truncated) random sample, #for large enough samples. x = rgamma(1e5,shape=2,rate=1) mean(x) mgamma(r=1,lower.tail=FALSE)