├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── .DS_Store ├── .Rapp.history ├── GMRotI50.R ├── GM_RotD.R ├── IMplot.R ├── RCTC.R ├── RcppExports.R ├── RotD_cal_PSA.R ├── Sinc_interp.R ├── data.R ├── data_ts.R ├── globals.R ├── read_cosmosV2.R ├── read_peer.R └── rename.R ├── RCTC.Rproj ├── README.Rmd ├── README.md ├── data ├── .DS_Store ├── NGAW2.rda ├── h1.rda ├── h2.rda └── v.rda ├── man ├── .DS_Store ├── GMRotI50_cal.Rd ├── GM_RotD_cal.Rd ├── IMplot.Rd ├── Interpft.Rd ├── NGAW2.Rd ├── PS_cal_cpp.Rd ├── RCTC-package.Rd ├── RotD_cal_PSA.Rd ├── h1.Rd ├── h2.Rd ├── ko_smooth.Rd ├── nametransfer.Rd ├── read_cosmosV2.Rd ├── read_peer.Rd ├── subset_select.Rd └── v.Rd ├── src ├── .DS_Store ├── .gitignore ├── KO_smooth.cpp ├── PS_cal_c.cpp ├── PS_cal_c.o ├── RCTC.so ├── RcppExports.cpp ├── RcppExports.o ├── subset_select_c.cpp └── subset_select_c.o └── tests ├── testthat.R └── testthat └── test-RotD_cal_PSA.R /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/.Rapp.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/GMRotI50.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/GMRotI50.R -------------------------------------------------------------------------------- /R/GM_RotD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/GM_RotD.R -------------------------------------------------------------------------------- /R/IMplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/IMplot.R -------------------------------------------------------------------------------- /R/RCTC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/RCTC.R -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/RotD_cal_PSA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/RotD_cal_PSA.R -------------------------------------------------------------------------------- /R/Sinc_interp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/Sinc_interp.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/data.R -------------------------------------------------------------------------------- /R/data_ts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/data_ts.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- 1 | utils::globalVariables(c("NGAW2")) 2 | -------------------------------------------------------------------------------- /R/read_cosmosV2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/read_cosmosV2.R -------------------------------------------------------------------------------- /R/read_peer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/read_peer.R -------------------------------------------------------------------------------- /R/rename.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/R/rename.R -------------------------------------------------------------------------------- /RCTC.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/RCTC.Rproj -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/README.md -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/NGAW2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/data/NGAW2.rda -------------------------------------------------------------------------------- /data/h1.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/data/h1.rda -------------------------------------------------------------------------------- /data/h2.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/data/h2.rda -------------------------------------------------------------------------------- /data/v.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/data/v.rda -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/GMRotI50_cal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/GMRotI50_cal.Rd -------------------------------------------------------------------------------- /man/GM_RotD_cal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/GM_RotD_cal.Rd -------------------------------------------------------------------------------- /man/IMplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/IMplot.Rd -------------------------------------------------------------------------------- /man/Interpft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/Interpft.Rd -------------------------------------------------------------------------------- /man/NGAW2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/NGAW2.Rd -------------------------------------------------------------------------------- /man/PS_cal_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/PS_cal_cpp.Rd -------------------------------------------------------------------------------- /man/RCTC-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/RCTC-package.Rd -------------------------------------------------------------------------------- /man/RotD_cal_PSA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/RotD_cal_PSA.Rd -------------------------------------------------------------------------------- /man/h1.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/h1.Rd -------------------------------------------------------------------------------- /man/h2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/h2.Rd -------------------------------------------------------------------------------- /man/ko_smooth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/ko_smooth.Rd -------------------------------------------------------------------------------- /man/nametransfer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/nametransfer.Rd -------------------------------------------------------------------------------- /man/read_cosmosV2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/read_cosmosV2.Rd -------------------------------------------------------------------------------- /man/read_peer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/read_peer.Rd -------------------------------------------------------------------------------- /man/subset_select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/subset_select.Rd -------------------------------------------------------------------------------- /man/v.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/man/v.Rd -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/KO_smooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/KO_smooth.cpp -------------------------------------------------------------------------------- /src/PS_cal_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/PS_cal_c.cpp -------------------------------------------------------------------------------- /src/PS_cal_c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/PS_cal_c.o -------------------------------------------------------------------------------- /src/RCTC.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/RCTC.so -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/RcppExports.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/RcppExports.o -------------------------------------------------------------------------------- /src/subset_select_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/subset_select_c.cpp -------------------------------------------------------------------------------- /src/subset_select_c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/src/subset_select_c.o -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-RotD_cal_PSA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wltcwpf/RCTC/HEAD/tests/testthat/test-RotD_cal_PSA.R --------------------------------------------------------------------------------