qnts | R Documentation |
qnts
calculates quantile of the NTS distribution with parameters (\alpha, \theta, \beta, \gamma, \mu)
.
If only three parameters are given, it calculates quantile of the standard NTS distribution with parameter (\alpha, \theta, \beta)
If a time parameter value is given, it calculates quantile of NTS profess. That is it finds x such that
u = P((X(t+s)-X(s))<x)
, where X is the NTS process generated
by the NTS distribution with parameters (\alpha, \theta, \beta, \gamma, \mu)
.
qnts(u, ntsparam)
u |
vector of probabilities. |
ntsparam |
A vector of the NTS parameters |
The quantile function of the NTS distribution
library(functional)
library(nloptr)
library(pracma)
library(spatstat)
library(Matrix)
library("temStaR")
alpha <- 1.2
theta <- 1
beta <- -0.2
ntsparam <- c(alpha, theta, beta)
u <- c(0.01,0.05,0.25,0.5, 0.75, 0.95, 0.99)
q <- qnts(u, ntsparam)
alpha <- 1.2
theta <- 1
beta <- -0.2
gamma <- 0.3
mu <- 0.1
ntsparam <- c(alpha, theta, beta, gamma, mu)
u <- c(0.01,0.05,0.25,0.5, 0.75, 0.95, 0.99)
q <- qnts(u, ntsparam)
#Annual based parameters
alpha <- 1.2
theta <- 1
beta <- -0.2
gamma <- 0.3
mu <- 0.1
#scaling annual parameters to one day
dt <- 1/250 #one day
ntsparam <- c(alpha, theta, beta, gamma, mu, dt)
u <- c(0.01,0.05,0.25,0.5, 0.75, 0.95, 0.99)
q <- qnts(u, ntsparam)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.