├── .gitignore ├── README.md ├── document-share.pdf ├── fordogs ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R │ ├── fbind.R │ └── fdist.R ├── README.Rmd ├── README.md ├── fordogs.Rproj ├── man │ └── fbind.Rd └── tests │ ├── testthat.R │ └── testthat │ └── test-fbind.R ├── intro-basic-workflow.pdf ├── pkg-dev-tutorial.Rproj └── testing.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | *.key 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /document-share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/document-share.pdf -------------------------------------------------------------------------------- /fordogs/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/.Rbuildignore -------------------------------------------------------------------------------- /fordogs/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /fordogs/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/DESCRIPTION -------------------------------------------------------------------------------- /fordogs/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jane Doe 3 | -------------------------------------------------------------------------------- /fordogs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/LICENSE.md -------------------------------------------------------------------------------- /fordogs/NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | export(fbind) 4 | -------------------------------------------------------------------------------- /fordogs/R/fbind.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/R/fbind.R -------------------------------------------------------------------------------- /fordogs/R/fdist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/R/fdist.R -------------------------------------------------------------------------------- /fordogs/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/README.Rmd -------------------------------------------------------------------------------- /fordogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/README.md -------------------------------------------------------------------------------- /fordogs/fordogs.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/fordogs.Rproj -------------------------------------------------------------------------------- /fordogs/man/fbind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/man/fbind.Rd -------------------------------------------------------------------------------- /fordogs/tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/tests/testthat.R -------------------------------------------------------------------------------- /fordogs/tests/testthat/test-fbind.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/fordogs/tests/testthat/test-fbind.R -------------------------------------------------------------------------------- /intro-basic-workflow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/intro-basic-workflow.pdf -------------------------------------------------------------------------------- /pkg-dev-tutorial.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/pkg-dev-tutorial.Rproj -------------------------------------------------------------------------------- /testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jennybc/pkg-dev-tutorial/HEAD/testing.pdf --------------------------------------------------------------------------------