├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── decks.R ├── extract_functions.R ├── flashcard.R ├── flashr-package.R ├── list_decks.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── codemeta.json ├── cran-comments.md ├── data-raw ├── create_data.R ├── data_types.R └── vectors.R ├── data ├── data_types.rda └── vectors.rda ├── flashr.Rproj ├── inst ├── CITATION ├── WORDLIST └── extdata │ ├── data_types.csv │ ├── operators.csv │ └── vectors.csv ├── man ├── build_functions_df.Rd ├── check_character.Rd ├── check_logical.Rd ├── choose_deck.Rd ├── create_deck.Rd ├── data_types.Rd ├── extract_code.Rd ├── extract_functions.Rd ├── fail_gracefully.Rd ├── figures │ ├── flashr.gif │ ├── flashr.mp4 │ └── logo.png ├── flashcard.Rd ├── flashr-package.Rd ├── list_decks.Rd └── vectors.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── tests ├── testthat.R └── testthat │ ├── helper.R │ ├── inst │ └── extdata │ │ └── data_types.csv │ ├── test-extract_functions.R │ ├── test-flashcard.R │ ├── test-list_decks.R │ ├── test-utils.R │ └── testdata │ └── operators.csv └── vignettes ├── .gitignore └── flashr.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Jeffrey R. Stevens 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/decks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/decks.R -------------------------------------------------------------------------------- /R/extract_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/extract_functions.R -------------------------------------------------------------------------------- /R/flashcard.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/flashcard.R -------------------------------------------------------------------------------- /R/flashr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/flashr-package.R -------------------------------------------------------------------------------- /R/list_decks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/list_decks.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/create_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/data-raw/create_data.R -------------------------------------------------------------------------------- /data-raw/data_types.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/data-raw/data_types.R -------------------------------------------------------------------------------- /data-raw/vectors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/data-raw/vectors.R -------------------------------------------------------------------------------- /data/data_types.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/data/data_types.rda -------------------------------------------------------------------------------- /data/vectors.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/data/vectors.rda -------------------------------------------------------------------------------- /flashr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/flashr.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/extdata/data_types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/inst/extdata/data_types.csv -------------------------------------------------------------------------------- /inst/extdata/operators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/inst/extdata/operators.csv -------------------------------------------------------------------------------- /inst/extdata/vectors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/inst/extdata/vectors.csv -------------------------------------------------------------------------------- /man/build_functions_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/build_functions_df.Rd -------------------------------------------------------------------------------- /man/check_character.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/check_character.Rd -------------------------------------------------------------------------------- /man/check_logical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/check_logical.Rd -------------------------------------------------------------------------------- /man/choose_deck.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/choose_deck.Rd -------------------------------------------------------------------------------- /man/create_deck.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/create_deck.Rd -------------------------------------------------------------------------------- /man/data_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/data_types.Rd -------------------------------------------------------------------------------- /man/extract_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/extract_code.Rd -------------------------------------------------------------------------------- /man/extract_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/extract_functions.Rd -------------------------------------------------------------------------------- /man/fail_gracefully.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/fail_gracefully.Rd -------------------------------------------------------------------------------- /man/figures/flashr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/figures/flashr.gif -------------------------------------------------------------------------------- /man/figures/flashr.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/figures/flashr.mp4 -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/flashcard.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/flashcard.Rd -------------------------------------------------------------------------------- /man/flashr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/flashr-package.Rd -------------------------------------------------------------------------------- /man/list_decks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/list_decks.Rd -------------------------------------------------------------------------------- /man/vectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/man/vectors.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/inst/extdata/data_types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/inst/extdata/data_types.csv -------------------------------------------------------------------------------- /tests/testthat/test-extract_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/test-extract_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-flashcard.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/test-flashcard.R -------------------------------------------------------------------------------- /tests/testthat/test-list_decks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/test-list_decks.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/testdata/operators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/tests/testthat/testdata/operators.csv -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/flashr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyRStevens/flashr/HEAD/vignettes/flashr.Rmd --------------------------------------------------------------------------------