mu_data: Values of estimated limit curve of dimension normalized...

Description Usage Format See also Source Examples

Description

A table of function values of the estimated limit curve of dimension normalized curvature measures mu.

Usage

1

Format

A two-column table of function values of mu; the columns corresponds to rho and kappa=mu(rho).

See also

mu

Package: symconivol

Source

The function values have been computed with an estimated value of C=0.2. The code below shows how this data can be generated.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
## Not run: 
library(tidyverse)

L <- leigh(1e5)
R <- rate(1e5)
rho <- seq(0,1,length.out=1e4)
Lkappa <- L$lkup_kappa(rho)
Rkappa <- R$lkup_R(rho)
kappa <- seq(0,1,length.out=1e4)
C <- 0.2
rhomin <- sapply(kappa, function(x)
    return( max(1-sqrt(1-x), min(sqrt(x),rho[which.min(
        (x-Lkappa)^2 / (1-abs(2*rho-1)) + 4*C*Rkappa )] ))))

mu_data <- tibble(kappa=kappa,rho=rhomin)

## End(Not run)

damelunx/symconivol documentation built on May 17, 2019, 7:01 p.m.