forked from Kento-O-tmu/One_Dim_Interval_Estimation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimMethodPathSource_r.R
More file actions
40 lines (38 loc) · 1.59 KB
/
SimMethodPathSource_r.R
File metadata and controls
40 lines (38 loc) · 1.59 KB
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
#para-NHPP-simulation
COS_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/COS_r.R")
print("Load COS NHPP Simulation module")
# print(COS_Path)
source(COS_Path)
GSm_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/GS-_r.R")
print("Load GS- NHPP simulation module")
# print(GS-_Path)
source(GSm_Path)
GSp_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/GS+_r.R")
print("Load GS+ NHPP Simulation module")
# print(GSp_Path)
source(GSp_Path)
RGS_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/RGS_r.R")
print("Load RGS NHPP simulation module")
# print(RGS_Path)
source(RGS_Path)
#nonpara-NHPP-simulation
Tim_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/TimTra_r.R")
print("Load Timtra NHPP Simulation module")
# print(Tim_Path)
source(Tim_Path)
Int_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/IntGen_r.R")
print("Load IntGen NHPP simulation module")
# print(Int_Path)
source(Int_Path)
Ord_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/OrdSta_r.R")
print("Load OrdSta NHPP Simulation module")
# print(Ord_Path)
source(Ord_Path)
Thi_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/ThiArr_r.R")
print("Load Thi NHPP simulation module")
# print(Thi_Path)
source(Thi_Path)
ThiInt_Path = paste0(dirname(rstudioapi::getSourceEditorContext()$path),"/simMethod/ThiInt_r.R")
print("Load ThiInt NHPP simulation module")
# print(ThiInt_Path)
source(ThiInt_Path)