Draw_AUC: Draw the Region of AUC of AFROC

Description Usage Arguments Details Value Examples

View source: R/AFROC.R

Description

An AFROC curve has two parameter denoted by a,b. Specifying a,b, we can draw an AFROC curve.

Def of AFROC

(ξ(t),η(t) ) =(1-e^{-t}, Φ( bΦ^{-1}(\exp(-t) )- a ) ).

Def of AUC of AFROC

AUC = \int η d ξ = \frac{ a }{ √{1+ b^2} }.

Usage

1
Draw_AUC(a = 0.13, b = 0.19, mesh.for.drawing.curve = 2222)

Arguments

a

One of the parameter of model which characterize AFROC curve

b

One of the parameter of model which characterize AFROC curve

mesh.for.drawing.curve

A positive large integer, indicating number of dots drawing the curves, Default =10000.

Details

We define the so-called FROC curve as a map from 1-dimensional Euclidean space to 2-dimensional Euclidean space, mapping each t>0 to

(x(t),y(t) ) =(t, Φ(\frac{ Φ^{-1}(\exp(-t)) - μ}{σ}) )

Sine x(t)=t,t>0 is not bounded, the area under the FROC curve is infinity.

To calculates aleternative notion of AUC in the ordinal ROC theory, we define the so-called AFROC curve:

(ξ(t),η(t) ) =(1-e^{-t}, Φ(\frac{ Φ^{-1}(\exp(-t)) - μ}{σ}) )

which contained in the rectangular space [0,1]^2. Introducing new parameter a:= μ / σ and b:= 1 / σ, we also write

(ξ(t),η(t) ) =(1-e^{-t}, Φ( bΦ^{-1}(\exp(-t) )- a ) )

The area Under the (AFROC) curve (breifly, we call it AUC) represents the observer performance. For example, if radiologist detects more lesions with small False Positives (FPs), then AUC would be high.

Using the parameter of the signal distribution, we express AUC as follows,

AUC = \frac{ μ / σ}{ √{1+ 1/σ^2} }.

Using new parameter a:= μ / σ and b:= 1 / σ, we also write

AUC = \frac{ a }{ √{1+ b^2} }.

Value

none.

Examples

1
2
3

BayesianFROC documentation built on Jan. 23, 2022, 9:06 a.m.