Description Usage Arguments Value Examples
View source: R/extract_data_frame_from_dataList_MRMC.R
Makes a dataframe
from a list consisting of vectors m,q,c,h,f
and positive integers NL,C,M,Q,NI
.
The resulting data-frame is construceted by vectors m,q,c,h,f
.
1 | extract_data_frame_from_dataList_MRMC(dataList, verbose = FALSE)
|
dataList |
A list of MRMC data. |
verbose |
A logical, if |
A data frame consisting of vectors m,q,c,h,f
.
m
A vector of positive integers, representing the modality ID vector.
q
A vector of positive integers, representing the reader ID vector.
c
A vector of positive integers, representing the confidence level. This vector must be made by rep(rep(C:1), M*Q)
h
A vector of non-negative integers, representing the number of hits.
f
A vector of non-negative integers, representing the number of false alarms.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
#========================================================================================
# From example dataset named dddddd
#========================================================================================
## Only run examples in interactive R sessions
if (interactive()) {
fit_GUI_Shiny_MRMC(DF=extract_data_frame_from_dataList_MRMC(dddddd))
}## Only run examples in interactive R sessions
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.