View source: R/Partial_Moments.R
NNS.CDF | R Documentation |
This function generates an empirical CDF using partial moment ratios LPM.ratio, and resulting survival, hazard and cumulative hazard functions.
NNS.CDF(variable, degree = 0, target = NULL, type = "CDF", plot = TRUE)
variable |
a numeric vector or data.frame of 2 variables for joint CDF. |
degree |
integer; |
target |
numeric; |
type |
options("CDF", "survival", "hazard", "cumulative hazard"); |
plot |
logical; plots CDF. |
Returns:
"Function"
a data.table containing the observations and resulting CDF of the variable.
"target.value"
value from the target
argument.
Fred Viole, OVVO Financial Systems
Viole, F. and Nawrocki, D. (2013) "Nonlinear Nonparametric Statistics: Using Partial Moments" (ISBN: 1490523995)
Viole, F. (2017) "Continuous CDFs and ANOVA with NNS" \Sexpr[results=rd]{tools:::Rd_expr_doi("10.2139/ssrn.3007373")}
## Not run:
set.seed(123)
x <- rnorm(100)
NNS.CDF(x)
## Empirical CDF (degree = 0)
NNS.CDF(x)
## Continuous CDF (degree = 1)
NNS.CDF(x, 1)
## Joint CDF
x <- rnorm(5000) ; y <- rnorm(5000)
A <- cbind(x,y)
NNS.CDF(A, 0)
## Joint CDF with target
NNS.CDF(A, 0, target = c(0,0))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.