# NOT RUN {
# First, we prepare the data endowed with this package:
dat <- get(data("dataList.Chakra.1"))
# Second, create a fitted model object;
fit <- fit_Bayesian_FROC(dat, PreciseLogLikelihood = TRUE)
# Using the fitted model object "fit", we obtain the WAIC
waic(fit)
#The Author provide two model for FROC for a single reader and a single modality case.
#One is false alarm rates means "per lesion" and the other means "per image".
#The above "fit" is "per image". Now we shall consider to compare these two model
#by WAIC. To do so, next we shall fit the "per lesion" model as follows:
fit2 <- fit_Bayesian_FROC(dat, PreciseLogLikelihood = TRUE, ModifiedPoisson=TRUE)
waic(fit2)
# By compare two model's WAIC we can say which model is better.
# Note that the smaller WAIC is better.
waic(fit) # per lesion model
waic(fit2) # per image model
# 2019.05.21 Revised.
# }
# NOT RUN {
# dottest
# }
Run the code above in your browser using DataLab