Skip to content

Commit

Permalink
add mlr cheatsheet
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-s committed Mar 31, 2020
1 parent 0976444 commit 17d558e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -8,6 +8,7 @@ Cheatsheets of mlr-org packages

## Cheatsheets

- [mlr](https://cheatsheets.mlr-org.com/mlr.pdf)
- [mlr3](https://cheatsheets.mlr-org.com/mlr3.pdf)
- [mlr3pipelines](https://cheatsheets.mlr-org.com/mlr3pipelines.pdf)
- [mlr3tuning](https://cheatsheets.mlr-org.com/mlr3tuning.pdf)
Expand Down
Binary file added mlr/mlr.pptx
Binary file not shown.
Binary file added mlr/mlrcheatsheet.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions tic.R
@@ -1,6 +1,8 @@
get_stage("deploy") %>%
add_code_step(fs::dir_create("docs/")) %>%
add_code_step(fs::file_copy("README.md", "docs/")) %>%
# mlr
add_code_step(fs::file_move("mlr3/mlrcheatsheet.pdf", "docs/mlr.pdf")) %>%
# mlr3
add_code_step(withr::with_dir("mlr3", tinytex::latexmk("mlr3cheatsheet.tex"))) %>%
add_code_step(fs::file_move("mlr3/mlr3cheatsheet.pdf", "docs/mlr3.pdf")) %>%
Expand All @@ -23,6 +25,7 @@ if (ci_can_push() && !ci_is_tag()) {
if (ci_get_branch() == "master") {
get_stage("deploy") %>%
add_step(step_do_push_deploy(path = "docs", commit_paths = c(
"mlr.pdf",
"mlr3.pdf",
"mlr3pipelines.pdf",
"mlr3tuning.pdf",
Expand Down

0 comments on commit 17d558e

Please sign in to comment.