moments_NTS | R Documentation |
moments_NTS
calculates mean, variance, skewness, and excess kurtosis
of the NTS distribution with parameters (\alpha, \theta, \beta, \gamma, \mu)
.
moments_NTS(param)
param |
A vector of the NTS parameters |
First 4 moments (Mean, Variance, Skewness, Excess Kurtosis) of NTS distribution.
The mean is always the same as the parameter \mu
.
Kim, Y.S, K-H Roh, R. Douady (2020) Tempered Stable Processes with Time Varying Exponential Tails https://arxiv.org/pdf/2006.07669.pdf
library("temStaR")
alpha <- 1.2
theta <- 1
beta <- -0.2
gamma <- 0.3
mu <- 0.1
ntsparam <- c(alpha, theta, beta, gamma, mu)
moments_NTS(param = ntsparam)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.