dataset_creator_by_specifying_only_M_Q: Creates dataset

Description Usage Arguments Value Examples

View source: R/dataset_creator_by_specifying_only_M_Q.R

Description

creates dataset

Usage

1

Arguments

M

A positive integer, indicating number of modalities.

Q

A positive integer, indicating number of readers.

Value

An MRMC dataset.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
####1#### ####2#### ####3#### ####4#### ####5#### ####6#### ####7#### ####8#### ####9####
#========================================================================================
#                       make a data of a single modality and 36 readers
#========================================================================================


            d<-  dataset_creator_by_specifying_only_M_Q(M=1,Q=36)



            check_hit_is_less_than_NL(d)


       #     plot_FPF_and_TPF_from_a_dataset(d)
            plot_FPF_TPF_via_dataframe_with_split_factor(d)

####1#### ####2#### ####3#### ####4#### ####5#### ####6#### ####7#### ####8#### ####9####
#========================================================================================
#                       make a data of 2 modalities and 36 readers
#========================================================================================


            d<-  dataset_creator_by_specifying_only_M_Q(M=2,Q=36)



            check_hit_is_less_than_NL(d)


         #   plot_FPF_and_TPF_from_a_dataset(d)
            plot_FPF_TPF_via_dataframe_with_split_factor(d)


#========================================================================================
#                       make a data of 2 modalities and 6 readers
#========================================================================================


            d<-  dataset_creator_by_specifying_only_M_Q(M=2,Q=6)



            check_hit_is_less_than_NL(d)


         #   plot_FPF_and_TPF_from_a_dataset(d)
            plot_FPF_TPF_via_dataframe_with_split_factor(d)


## Not run: 
  # Stan runs
          fit_a_model_to(dataList = d,
                    seed_for_MCMC = 1234)


## End(Not run)

BayesianFROC documentation built on Jan. 23, 2022, 9:06 a.m.