├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── RcppExports.R ├── ballet.R ├── choreography.R ├── filter.R ├── foxtrot.R ├── mutate.R ├── rumba.R ├── summarise.R ├── swing.R ├── tools.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── dance.Rproj ├── man ├── ballet.Rd ├── bolero.Rd ├── choreography.Rd ├── figures │ └── logo.png ├── jive.Rd ├── mambo.Rd ├── reexports.Rd ├── rumba.Rd ├── samba.Rd ├── swing.Rd └── tango.Rd ├── src ├── .gitignore ├── RcppExports.cpp ├── bolero.cpp ├── dance.h └── salsa.cpp └── tests ├── testthat.R └── testthat └── test-tango.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | .Rproj.user 3 | .Rhistory 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Romain François 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/ballet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/ballet.R -------------------------------------------------------------------------------- /R/choreography.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/choreography.R -------------------------------------------------------------------------------- /R/filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/filter.R -------------------------------------------------------------------------------- /R/foxtrot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/foxtrot.R -------------------------------------------------------------------------------- /R/mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/mutate.R -------------------------------------------------------------------------------- /R/rumba.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/rumba.R -------------------------------------------------------------------------------- /R/summarise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/summarise.R -------------------------------------------------------------------------------- /R/swing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/swing.R -------------------------------------------------------------------------------- /R/tools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/tools.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | destination: docs 2 | -------------------------------------------------------------------------------- /dance.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/dance.Rproj -------------------------------------------------------------------------------- /man/ballet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/ballet.Rd -------------------------------------------------------------------------------- /man/bolero.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/bolero.Rd -------------------------------------------------------------------------------- /man/choreography.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/choreography.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/jive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/jive.Rd -------------------------------------------------------------------------------- /man/mambo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/mambo.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/rumba.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/rumba.Rd -------------------------------------------------------------------------------- /man/samba.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/samba.Rd -------------------------------------------------------------------------------- /man/swing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/swing.Rd -------------------------------------------------------------------------------- /man/tango.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/man/tango.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/bolero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/src/bolero.cpp -------------------------------------------------------------------------------- /src/dance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/src/dance.h -------------------------------------------------------------------------------- /src/salsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/src/salsa.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-tango.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainfrancois/dance/HEAD/tests/testthat/test-tango.R --------------------------------------------------------------------------------