gitextract_ov74y_ad/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.txt ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── .Rapp.history │ ├── RcppExports.R │ ├── deprecated_defunct.R │ ├── ggplot_na_distribution.R │ ├── ggplot_na_distribution2.R │ ├── ggplot_na_gapsize.R │ ├── ggplot_na_gapsize2.R │ ├── ggplot_na_imputations.R │ ├── imputeTS-package.R │ ├── internal_algorithm_interface.R │ ├── na_interpolation.R │ ├── na_kalman.R │ ├── na_locf.R │ ├── na_ma.R │ ├── na_mean.R │ ├── na_random.R │ ├── na_remove.R │ ├── na_replace.R │ ├── na_seadec.R │ ├── na_seasplit.R │ ├── statsNA.R │ ├── tsAirgap.R │ ├── tsAirgapComplete.R │ ├── tsHeating.R │ ├── tsHeatingComplete.R │ ├── tsNH4.R │ └── tsNH4Complete.R ├── README.md ├── _pkgdown.yaml ├── codecov.yml ├── data/ │ ├── tsAirgap.rda │ ├── tsAirgapComplete.rda │ ├── tsHeating.rda │ ├── tsHeatingComplete.rda │ ├── tsNH4.rda │ └── tsNH4Complete.rda ├── docs/ │ ├── 404.html │ ├── articles/ │ │ ├── gallery_visualizations.html │ │ ├── gallery_visualizations_files/ │ │ │ ├── accessible-code-block-0.0.1/ │ │ │ │ └── empty-anchor.js │ │ │ ├── header-attrs-2.16/ │ │ │ │ └── header-attrs.js │ │ │ └── header-attrs-2.7/ │ │ │ └── header-attrs.js │ │ └── index.html │ ├── authors.html │ ├── bootstrap-toc.css │ ├── bootstrap-toc.js │ ├── docsearch.css │ ├── docsearch.js │ ├── index.html │ ├── news/ │ │ └── index.html │ ├── pkgdown.css │ ├── pkgdown.js │ ├── pkgdown.yml │ ├── reference/ │ │ ├── figures/ │ │ │ └── Cheat_Sheet_imputeTS.pptx │ │ ├── ggplot_na_distribution.html │ │ ├── ggplot_na_distribution2.html │ │ ├── ggplot_na_gapsize.html │ │ ├── ggplot_na_gapsize2.html │ │ ├── ggplot_na_imputations.html │ │ ├── ggplot_na_intervals.html │ │ ├── ggplot_na_level.html │ │ ├── ggplot_na_level2.html │ │ ├── ggplot_na_pattern.html │ │ ├── imputeTS-package.html │ │ ├── imputeTS.html │ │ ├── index.html │ │ ├── na.interpolation.html │ │ ├── na.kalman.html │ │ ├── na.locf.html │ │ ├── na.ma.html │ │ ├── na.mean.html │ │ ├── na.random.html │ │ ├── na.remove.html │ │ ├── na.replace.html │ │ ├── na.seadec.html │ │ ├── na.seasplit.html │ │ ├── na_interpolation.html │ │ ├── na_kalman.html │ │ ├── na_locf.html │ │ ├── na_ma.html │ │ ├── na_mean.html │ │ ├── na_random.html │ │ ├── na_remove.html │ │ ├── na_replace.html │ │ ├── na_seadec.html │ │ ├── na_seasplit.html │ │ ├── plotNA.distribution.html │ │ ├── plotNA.distributionBar.html │ │ ├── plotNA.gapsize.html │ │ ├── plotNA.imputations.html │ │ ├── reexports.html │ │ ├── statsNA.html │ │ ├── tsAirgap.html │ │ ├── tsAirgapComplete.html │ │ ├── tsHeating.html │ │ ├── tsHeatingComplete.html │ │ ├── tsNH4.html │ │ └── tsNH4Complete.html │ └── sitemap.xml ├── imputeTS.Rproj ├── inst/ │ └── CITATION ├── man/ │ ├── ggplot_na_distribution.Rd │ ├── ggplot_na_distribution2.Rd │ ├── ggplot_na_gapsize.Rd │ ├── ggplot_na_gapsize2.Rd │ ├── ggplot_na_imputations.Rd │ ├── ggplot_na_intervals.Rd │ ├── imputeTS-package.Rd │ ├── na.interpolation.Rd │ ├── na.kalman.Rd │ ├── na.locf.Rd │ ├── na.ma.Rd │ ├── na.mean.Rd │ ├── na.random.Rd │ ├── na.remove.Rd │ ├── na.replace.Rd │ ├── na.seadec.Rd │ ├── na.seasplit.Rd │ ├── na_interpolation.Rd │ ├── na_kalman.Rd │ ├── na_locf.Rd │ ├── na_ma.Rd │ ├── na_mean.Rd │ ├── na_random.Rd │ ├── na_remove.Rd │ ├── na_replace.Rd │ ├── na_seadec.Rd │ ├── na_seasplit.Rd │ ├── plotNA.distribution.Rd │ ├── plotNA.distributionBar.Rd │ ├── plotNA.gapsize.Rd │ ├── plotNA.imputations.Rd │ ├── reexports.Rd │ ├── statsNA.Rd │ ├── tsAirgap.Rd │ ├── tsAirgapComplete.Rd │ ├── tsHeating.Rd │ ├── tsHeatingComplete.Rd │ ├── tsNH4.Rd │ └── tsNH4Complete.Rd ├── src/ │ ├── RcppExports.cpp │ ├── locf.cpp │ └── ma.cpp ├── tests/ │ ├── testthat/ │ │ ├── test-apply_base_algorithm.R │ │ ├── test-depreciated_defunct.R │ │ ├── test-error_handling.R │ │ ├── test-ggplot_na_distribution.R │ │ ├── test-ggplot_na_distribution2.R │ │ ├── test-ggplot_na_gapsize.R │ │ ├── test-ggplot_na_gapsize2.R │ │ ├── test-ggplot_na_imputations.R │ │ ├── test-input-na_advanced-tsObjects.R │ │ ├── test-na_interpolation.R │ │ ├── test-na_kalman.R │ │ ├── test-na_locf.R │ │ ├── test-na_ma.R │ │ ├── test-na_mean.R │ │ ├── test-na_random.R │ │ ├── test-na_remove.R │ │ ├── test-na_replace.R │ │ ├── test-na_seadec.R │ │ ├── test-na_seasplit.R │ │ ├── test-parameter-maxgap.R │ │ └── test-statsNA.R │ └── testthat.R └── vignettes/ ├── Cheat_Sheet_imputeTS.pdf.asis ├── Cheat_Sheet_imputeTS.pptx ├── RJournal.sty ├── gallery_visualizations.Rmd └── imputeTS-Time-Series-Missing-Value-Imputation-in-R.ltx