AH_AOC: Calculate Area Outside the Curve

Description Usage Arguments Examples

Description

AH_AOC calculates the Area Outside of the Curve for asymmetric boundaries. It is implemented for a variety of techniques and can return bootstrapped confidence intervals.

Usage

1
2
AH_AOC(dat, input, output, method, print_style = "ascii", CI = FALSE,
  nboots)

Arguments

dat

A Dataset

input

Independent variable

output

Dependent variable

method

What boundary method should be used? One of: SFA, QR, Polynomial, Kernel.

print_style

"ascii" or "r"?

CI

Should confidence intervals be returned?

nboots

Number of bootstraps to generate the confidence intervals

Examples

1
2
3
DATA <- read.csv("dat.csv")
AH_AOC(DATA, input = DATA$x, output = DATA$y, method = "QR",
   print_style = "ascii", CI = TRUE, nboots = 5000)

asrosenberg/asymmetric-package documentation built on May 12, 2019, 5:38 a.m.