├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── lock.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── aaa.R ├── get_loading_data.R ├── plot_loadings.R └── plot_top_loadings.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── inst ├── tutorial_list.tsv └── tutorials │ └── pca_recipes │ ├── .gitignore │ ├── css │ └── style.css │ ├── js │ └── exercise-font-size.js │ └── pca_recipes.Rmd ├── learntidymodels.Rproj ├── man ├── get_loading_data.Rd ├── plot_loadings.Rd └── plot_top_loadings.Rd └── tests ├── testthat.R └── testthat ├── helper-loadings.R ├── test-loading-data.R └── test-loading-plot.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/.github/workflows/lock.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: RStudio 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/get_loading_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/R/get_loading_data.R -------------------------------------------------------------------------------- /R/plot_loadings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/R/plot_loadings.R -------------------------------------------------------------------------------- /R/plot_top_loadings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/R/plot_top_loadings.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/tutorial_list.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/inst/tutorial_list.tsv -------------------------------------------------------------------------------- /inst/tutorials/pca_recipes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/tutorials/pca_recipes/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/inst/tutorials/pca_recipes/css/style.css -------------------------------------------------------------------------------- /inst/tutorials/pca_recipes/js/exercise-font-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/inst/tutorials/pca_recipes/js/exercise-font-size.js -------------------------------------------------------------------------------- /inst/tutorials/pca_recipes/pca_recipes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/inst/tutorials/pca_recipes/pca_recipes.Rmd -------------------------------------------------------------------------------- /learntidymodels.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/learntidymodels.Rproj -------------------------------------------------------------------------------- /man/get_loading_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/man/get_loading_data.Rd -------------------------------------------------------------------------------- /man/plot_loadings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/man/plot_loadings.Rd -------------------------------------------------------------------------------- /man/plot_top_loadings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/man/plot_top_loadings.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-loadings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/tests/testthat/helper-loadings.R -------------------------------------------------------------------------------- /tests/testthat/test-loading-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/tests/testthat/test-loading-data.R -------------------------------------------------------------------------------- /tests/testthat/test-loading-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/learntidymodels/HEAD/tests/testthat/test-loading-plot.R --------------------------------------------------------------------------------