├── .Rapp.history ├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── .Rapp.history ├── sim2fit.R ├── simTVVAR.R ├── stanmodels.R ├── tvvarss-package.R └── tvvarss.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── configure ├── configure.win ├── docs ├── 404.html ├── articles │ ├── index.html │ ├── intro_tvvarss.html │ └── intro_tvvarss_files │ │ ├── accessible-code-block-0.0.1 │ │ └── empty-anchor.js │ │ └── figure-html │ │ ├── ex_1_lots-1.png │ │ ├── ex_1_lots-10.png │ │ ├── ex_1_lots-2.png │ │ ├── ex_1_lots-3.png │ │ ├── ex_1_lots-4.png │ │ ├── ex_1_lots-5.png │ │ ├── ex_1_lots-6.png │ │ ├── ex_1_lots-7.png │ │ ├── ex_1_lots-8.png │ │ ├── ex_1_lots-9.png │ │ ├── ex_1_screening-1.png │ │ ├── ex_1_screening-10.png │ │ ├── ex_1_screening-2.png │ │ ├── ex_1_screening-3.png │ │ ├── ex_1_screening-4.png │ │ ├── ex_1_screening-5.png │ │ ├── ex_1_screening-6.png │ │ ├── ex_1_screening-7.png │ │ ├── ex_1_screening-8.png │ │ ├── ex_1_screening-9.png │ │ ├── ex_1_sim-1.png │ │ ├── ex_2_screening-1.png │ │ ├── ex_2_screening-2.png │ │ ├── ex_2_screening-3.png │ │ ├── ex_2_screening-4.png │ │ └── ex_2_screening-5.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Rplot001.png │ ├── index.html │ ├── sim2fit.html │ ├── simTVVAR.html │ ├── tvvarss-package.html │ └── tvvarss.html ├── inst ├── include │ └── stan_meta_header.hpp └── stan │ ├── include │ └── license.stan │ └── tvvarss.stan ├── man ├── sim2fit.Rd ├── simTVVAR.Rd ├── tvvarss-package.Rd └── tvvarss.Rd ├── pkgdown └── extra.css ├── src ├── Makevars ├── Makevars.win ├── RcppExports-4e7de3de.o.tmp ├── RcppExports-7f512528.o.tmp ├── RcppExports.cpp ├── RcppExports.o ├── stanExports_ar-06cd7a72.o.tmp ├── stanExports_dlm-a27bf1d8.o.tmp ├── stanExports_ss_rw-9b72b6ef.o.tmp ├── stanExports_tvvarss.cc ├── stanExports_tvvarss.h ├── stanExports_tvvarss.o └── tvvarss.so ├── tvvarss.Rproj └── vignettes └── intro_tvvarss.Rmd /.Rapp.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/.Rapp.history -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.Rapp.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/R/.Rapp.history -------------------------------------------------------------------------------- /R/sim2fit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/R/sim2fit.R -------------------------------------------------------------------------------- /R/simTVVAR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/R/simTVVAR.R -------------------------------------------------------------------------------- /R/stanmodels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/R/stanmodels.R -------------------------------------------------------------------------------- /R/tvvarss-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/R/tvvarss-package.R -------------------------------------------------------------------------------- /R/tvvarss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/R/tvvarss.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/configure.win -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss.html -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-1.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-10.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-2.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-3.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-4.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-5.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-6.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-7.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-8.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_lots-9.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-1.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-10.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-2.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-3.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-4.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-5.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-6.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-7.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-8.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_screening-9.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_1_sim-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_1_sim-1.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-1.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-2.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-3.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-4.png -------------------------------------------------------------------------------- /docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/articles/intro_tvvarss_files/figure-html/ex_2_screening-5.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/sim2fit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/reference/sim2fit.html -------------------------------------------------------------------------------- /docs/reference/simTVVAR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/reference/simTVVAR.html -------------------------------------------------------------------------------- /docs/reference/tvvarss-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/reference/tvvarss-package.html -------------------------------------------------------------------------------- /docs/reference/tvvarss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/docs/reference/tvvarss.html -------------------------------------------------------------------------------- /inst/include/stan_meta_header.hpp: -------------------------------------------------------------------------------- 1 | // Insert all #include statements here 2 | -------------------------------------------------------------------------------- /inst/stan/include/license.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/inst/stan/include/license.stan -------------------------------------------------------------------------------- /inst/stan/tvvarss.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/inst/stan/tvvarss.stan -------------------------------------------------------------------------------- /man/sim2fit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/man/sim2fit.Rd -------------------------------------------------------------------------------- /man/simTVVAR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/man/simTVVAR.Rd -------------------------------------------------------------------------------- /man/tvvarss-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/man/tvvarss-package.Rd -------------------------------------------------------------------------------- /man/tvvarss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/man/tvvarss.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports-4e7de3de.o.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/RcppExports-7f512528.o.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/RcppExports.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/RcppExports.o -------------------------------------------------------------------------------- /src/stanExports_ar-06cd7a72.o.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stanExports_dlm-a27bf1d8.o.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stanExports_ss_rw-9b72b6ef.o.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stanExports_tvvarss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/stanExports_tvvarss.cc -------------------------------------------------------------------------------- /src/stanExports_tvvarss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/stanExports_tvvarss.h -------------------------------------------------------------------------------- /src/stanExports_tvvarss.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/stanExports_tvvarss.o -------------------------------------------------------------------------------- /src/tvvarss.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/src/tvvarss.so -------------------------------------------------------------------------------- /tvvarss.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/tvvarss.Rproj -------------------------------------------------------------------------------- /vignettes/intro_tvvarss.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsa-es/tvvarss/HEAD/vignettes/intro_tvvarss.Rmd --------------------------------------------------------------------------------