plotBoundary: A function to plot the boundary of the decision region

View source: R/plotBoundary.R

plotBoundaryR Documentation

A function to plot the boundary of the decision region

Description

This function attempts to plot the boundary of the decision region, but currently falls flat. Will be rewritten.

Usage

plotBoundary(b1, b0, p, glrTables = NULL, tol = 1e-7,
             legend  =FALSE, textXOffset = 2, textYSkip = 2)

Arguments

b1

The acceptance boundary value (corresponds to the boundary b_1 in the appendix of reference)

b0

The rejection boundary value (corresponds to the boundary b_0 in the appendix of reference)

p

The vector of probabilities, (p_0, p_1) with p_0 < p_1.

glrTables

A previously computed set of likelihood functions, to speed up computation for the same hypothesis testing problem. This can speed up computations.

tol

The tolerance, default of 1e-7

legend

A flag indicating if a legend is desired or not, default false

textXOffset

Horizontal offset for legend text

textYSkip

Vertical skip for legend text

Details

This essentially computes the recursion and the probabilities of hitting the boundaries and returns a ggplot2 object

Value

A ggplot2 object

Author(s)

Balasubramanian Narasimhan

See Also

See Also glrSearch

Examples

plotBoundary(b1=2.8, b0=3.3, p=c(.5, .75))

sglr documentation built on April 19, 2022, 5:06 p.m.