├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── AllGenerics.R ├── cumSumGroup.R ├── imports.R └── method-winScan.R ├── README.md ├── inst └── doc │ ├── windowscanr_intro.R │ ├── windowscanr_intro.Rmd │ └── windowscanr_intro.html ├── man ├── cumSumGroup.Rd └── winScan.Rd ├── vignettes ├── window_example.png ├── window_illustration.png ├── windowscanr_intro.Rmd ├── windowscanr_intro.html ├── windowscanr_intro.md └── windowscanr_intro_files │ └── figure-html │ ├── unnamed-chunk-2-1.png │ ├── unnamed-chunk-4-1.png │ ├── unnamed-chunk-6-1.png │ └── unnamed-chunk-8-1.png └── windowscanr.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/AllGenerics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/R/AllGenerics.R -------------------------------------------------------------------------------- /R/cumSumGroup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/R/cumSumGroup.R -------------------------------------------------------------------------------- /R/imports.R: -------------------------------------------------------------------------------- 1 | #' @import dplyr 2 | NULL 3 | -------------------------------------------------------------------------------- /R/method-winScan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/R/method-winScan.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/README.md -------------------------------------------------------------------------------- /inst/doc/windowscanr_intro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/inst/doc/windowscanr_intro.R -------------------------------------------------------------------------------- /inst/doc/windowscanr_intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/inst/doc/windowscanr_intro.Rmd -------------------------------------------------------------------------------- /inst/doc/windowscanr_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/inst/doc/windowscanr_intro.html -------------------------------------------------------------------------------- /man/cumSumGroup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/man/cumSumGroup.Rd -------------------------------------------------------------------------------- /man/winScan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/man/winScan.Rd -------------------------------------------------------------------------------- /vignettes/window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/window_example.png -------------------------------------------------------------------------------- /vignettes/window_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/window_illustration.png -------------------------------------------------------------------------------- /vignettes/windowscanr_intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro.Rmd -------------------------------------------------------------------------------- /vignettes/windowscanr_intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro.html -------------------------------------------------------------------------------- /vignettes/windowscanr_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro.md -------------------------------------------------------------------------------- /vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/vignettes/windowscanr_intro_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /windowscanr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tavareshugo/WindowScanR/HEAD/windowscanr.Rproj --------------------------------------------------------------------------------