Description Usage Arguments Details Value Examples
View source: R/m_q_c_vector_from_M_Q_C.R
Makes m,q,c
vectors
from a collection of three integers M,Q,C
,
where three vectors m,q,c
denotes modality ID, reader ID, confidence level,
respectively.
1 | m_q_c_vector_from_M_Q_C(M, Q, C)
|
M |
A positive integer, representing modality ID |
Q |
A positive integer, representing reader ID |
C |
A positive integer, representing confidence level |
My research is not supported any found, I am completely independent and only my own or my parents are supported my research. No internet, poor condition, I made this. I must go on untill jounal accepts my manuscripts.
I am not happy to spent with FROC analysis, since it is not my interest. I want to research pure mathematics. I do not want to waste a time. I do not want to waste a time in hospital or plurigo nodularis. When I become happy? This program helps me? With great pain at 2019 Sept. 2019 Sept. 8
A data-frame, including three vectors, which are named m,q,c
representing modality ID and reader ID and confidence level, respectively.
For example, the resulting object of a <- m_q_c_vector_from_M_Q_C(2,3,4)
is given by
> a
m | q | c |
-------- | ------ | --------- |
1 | 1 | 4 |
1 | 1 | 3 |
1 | 1 | 2 |
1 | 1 | 1 |
1 | 2 | 4 |
1 | 2 | 3 |
1 | 2 | 2 |
1 | 2 | 1 |
1 | 3 | 4 |
1 | 3 | 3 |
1 | 3 | 2 |
1 | 3 | 1 |
2 | 1 | 4 |
2 | 1 | 3 |
2 | 1 | 2 |
2 | 1 | 1 |
2 | 2 | 4 |
2 | 2 | 3 |
2 | 2 | 2 |
2 | 2 | 1 |
2 | 3 | 4 |
2 | 3 | 3 |
2 | 3 | 2 |
2 | 3 | 1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #========================================================================================
# Create a ID vectors
#========================================================================================
a <- m_q_c_vector_from_M_Q_C(2,3,4)
a$m
a$q
a$c
#========================================================================================
# validation of this function
#========================================================================================
#'
a <- m_q_c_vector_from_M_Q_C(5,4,5)
a$m == dd$m
a$c == dd$c
a$q == dd$q
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.