Description Format Details Author(s) References See Also
A list, representing FROC data consisting of hits, false alarms, number of lesions, number of images. We fit a FROC model to the data.
A list consists of two integer vectors f, h
and three integers NL, NI, C
.
f
Non-negative integer vector specifying number of false alarms associated with each confidence level. The first component corresponding to the highest confidence level.
h
Non-negative integer vector specifying number of Hits associated with each confidence level. The first component corresponding to the highest confidence level.
NL
A positive integer, representing Number of Lesions.
NI
A positive integer, representing Number of Images.
C
A positive integer, representing Number of Confidence level.
Contents:
A single reader and a single modality case
——————————————————————————————————
NI=57,NL=269 | confidence level | No. of false alarms | No. of hits |
In R console -> | c | f | h |
----------------------- | ----------------------- | ----------------------------- | ------------- |
definitely present | 3 | 2 | 96 |
probably present | 2 | 16 | 39 |
questionable | 1 | 48 | 13 |
—————————————————————————————————
* false alarms = False Positives = FP
* hits = True Positives = TP
Note that in FROC data, the confidence level means present (deseased, positive) case only. Since each reader marks their suspicous location only and it generate the hits and false alarms for his confidenc level representing that lesion is present. In the absent case, reader does not mark any locations and hence, the absent cofidence level does not relate this dataset.
Note that the first column of confidence level vector c
should not be specified. If specified, will be ignored , since it is created by c <-c(rep(C:1))
automatically in the program and it does not refer from user input data even if it is specified explicitly, where C
is the highest number of confidence levels.
So you should check the compatibility of your data and the program's generating new confidence level vector by
a table which can be displayed by the function viewdata()
.
Note that The format for the above example data must be made by the following forms:
dat <- list(
h = c(96, 39, 13 ),
f = c( 2, 16, 48),
NL = 269,
NI = 57,
C = 3)
This object dat
can be passed to the function fit_Bayesian_FROC()
as the following manner fit_Bayesian_FROC(dat)
.
Note that the maximal number of confidence level,
denoted by C
, are included,
however, confidence level vector c
should not be specified.
If specified, will be ignored ,
since it is created by c <-c(rep(C:1))
in the program
and it does not refer from user input data,
where C
is the highest number of confidence levels.
Should write down your hits and
false alarms vector so that it is compatible with this automatically created vector c
.
This data appeared in Chakraborty's paper (1988).
Issei Tsunoda tsunoda.issei1111@gmail.com
Maximum likelihood analysis of free-response receiver operating characteristic (FROC) data, Dev P. Chakraborty.
dataList.Chakra.1.with.explantation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.