├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── EM_convergence.R ├── EM_step.R ├── dfm.R ├── fill_na.R ├── gen_news.R ├── init_conds.R ├── kalman_filter.R ├── kalman_filter_constparams.R ├── news_dfm.R └── remove_missing.R ├── README.md ├── cran-comments.md ├── man ├── dfm.Rd ├── gen_news.Rd └── predict_dfm.Rd └── tests ├── testthat.R └── testthat └── test-dfm.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/EM_convergence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/EM_convergence.R -------------------------------------------------------------------------------- /R/EM_step.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/EM_step.R -------------------------------------------------------------------------------- /R/dfm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/dfm.R -------------------------------------------------------------------------------- /R/fill_na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/fill_na.R -------------------------------------------------------------------------------- /R/gen_news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/gen_news.R -------------------------------------------------------------------------------- /R/init_conds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/init_conds.R -------------------------------------------------------------------------------- /R/kalman_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/kalman_filter.R -------------------------------------------------------------------------------- /R/kalman_filter_constparams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/kalman_filter_constparams.R -------------------------------------------------------------------------------- /R/news_dfm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/news_dfm.R -------------------------------------------------------------------------------- /R/remove_missing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/R/remove_missing.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/dfm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/man/dfm.Rd -------------------------------------------------------------------------------- /man/gen_news.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/man/gen_news.Rd -------------------------------------------------------------------------------- /man/predict_dfm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/man/predict_dfm.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-dfm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastDFM/HEAD/tests/testthat/test-dfm.R --------------------------------------------------------------------------------