
From a given model parameter, creates a FROC dataset in case of multiple readers and multiple modality, breafly MRMC. The dataset consists of the number of hits and false alarms and ID vectors of readers, modalites, confidences, etc.
The created dataset is a list
(which can be passed to
fit_Bayesian_FROC()
).
Model parameters are
thresholds,
mean and standard deviation of signal Gaussian.
create_dataList_MRMC(
z.truth = BayesianFROC::z_truth,
mu.truth = BayesianFROC::mu_truth,
v.truth = BayesianFROC::v_truth,
NI = 57,
NL = 142,
ModifiedPoisson = FALSE,
seed = 123,
summary = FALSE
)
Vector ( of dimension C) represents the thresholds.
array of dimension (M,Q). Mean of the signal distribution of bi-normal assumption.
array of dimension (M,Q). Standard Deviation of represents the signal distribution of bi-normal assumption.
The number of images,
The number of lesions,
Logical, that is TRUE
or FALSE
.
If ModifiedPoisson = TRUE
,
then Poisson rate of false alarm is calculated per lesion,
and a model is fitted
so that the FROC curve is an expected curve
of points consisting of the pairs of TPF per lesion and FPF per lesion.
Similarly,
If ModifiedPoisson = TRUE
,
then Poisson rate of false alarm is calculated per image,
and a model is fitted
so that the FROC curve is an expected curve
of points consisting of the pair of TPF per lesion and FPF per image.
For more details, see the author's paper in which I explained per image and per lesion. (for details of models, see vignettes , now, it is omiited from this package, because the size of vignettes are large.)
If ModifiedPoisson = TRUE
,
then the False Positive Fraction (FPF) is defined as follows
(
where
On the other hand,
if ModifiedPoisson = FALSE
(Default), then
False Positive Fraction (FPF) is given by
where
The model is fitted so that
the estimated FROC curve can be ragraded
as the expected pairs of FPF per image and TPF per lesion (ModifiedPoisson = FALSE
)
or as the expected pairs of FPF per image and TPF per lesion (ModifiedPoisson = TRUE
)
If ModifiedPoisson = TRUE
, then FROC curve means the expected pair of FPF per lesion and TPF.
On the other hand, if ModifiedPoisson = FALSE
, then FROC curve means the expected pair of FPF per image and TPF.
So,data of FPF and TPF are changed thus, a fitted model is also changed whether ModifiedPoisson = TRUE
or FALSE
.
In traditional FROC analysis, it uses only per images (trial). Since we can divide one image into two images or more images, number of
trial is not important. And more important is per signal. So, the author also developed FROC theory to consider FROC analysis under per signal.
One can see that the FROC curve is rigid with respect to change of a number of images, so, it does not matter whether ModifiedPoisson = TRUE
or FALSE
.
This rigidity of curves means that the number of images is redundant parameter for the FROC trial and
thus the author try to exclude it.
Revised 2019 Dec 8 Revised 2019 Nov 25 Revised 2019 August 28
The seed for creating hits which are synthesized by the binomial distributions with the specified seed.
Logical: TRUE
of FALSE
. Whether to print the verbose summary. If TRUE
then verbose summary is printed in the R console. If FALSE
, the output is minimal. I regret, this variable name should be verbose.
Specifying model parameters, we can replicates fake datasets.
Different seed
gives different fake data.
Model parameters are the following.
z.truth
mu.truth
v.truth
.
Probablity law of hits
Random variables of hits are distributed as follows.
then
Similarly, because we already found
Probablity law of false alarms
where subscripts
1) ModifiedPoisson = TRUE
.
2) ModifiedPoisson = FALSE
.
We fix the
The rate
In the R code,
the model parameter
z.truth
mu.truth
v.truth
.
Specifying these model parameters
we can make a fake dataset consisting of
hit data
chi_square_at_replicated_data_and_MCMC_samples_MRMC()
replicate_MRMC_dataList()
(To make many MRMC datasets,
see replicate_MRMC_dataList()
)
# NOT RUN {
dataList <- create_dataList_MRMC()
fit_Bayesian_FROC(dataList,
summary = FALSE,
ite = 1111)
# In the above example, we use a default values for true parameters for
# the distributions. The reason why the default values exists is difficulty
# for the user who is not familiar with FROC data nor konws the resions
# in which parameters of FROC model move.
# So, in the Bayesian model is merely model for FROC data.
# If user input the abnormal data, then the model does not fit nor converge
# in the Hamiltonian Monte Carlo simulations.
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC() )
#========================================================================================
# plot various MRMC datasets with fixed signal distribution but change thresholds
#========================================================================================
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(0.1,
0.2,
0.3,
0.4)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-0.1,
0.2,
0.3,
0.4)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
0.2,
0.3,
0.4)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
-0.2,
-0.3,
0.4)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
0.2,
0.3 )
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
1.2,
2.3 )
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
-0.5,
0,
1.2,
2.3,
3.3,
4)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
-0.5,
0,
1.2,
2.3,
3.3,
4,
5,
6)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
-0.5,
0,
1.2,
2.3,
3.3,
4,
5,
6,
7)
))
plot_FPF_and_TPF_from_a_dataset(create_dataList_MRMC( z.truth = c(-1,
-0.5,
0,
1.2,
2.3,
3.3,
4,
5,
6,
7,
8,
9,
10)
))
#========================================================================================
# Smoothing of Scatter Plot for FPF and TPF
#========================================================================================
v <- v_truth_creator_for_many_readers_MRMC_data(M=1,Q=17)
m <- mu_truth_creator_for_many_readers_MRMC_data(M=1,Q=17)
d <- create_dataList_MRMC(mu.truth = m,v.truth = v)
d<-metadata_to_fit_MRMC(d)
df <- data.frame(FPF = d$ffN, TPF = d$hhN)
# require(graphics)
dark_theme()
graphics::plot(df, main = "lowess(cars)")
graphics::lines(stats::lowess(df), col = 2)
graphics::lines(stats::lowess(df, f = .2), col = 3)
graphics::legend(5, 120, c(paste("f = ", c("2/3", ".2"))), lty = 1, col = 2:3)
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab