flowchart LR
subgraph one[Initializing package]
direction LR
A("create_package()")-->C("use_git()")
A-->B("use_XX_licence()")
A--> Z("use_testthat()")
end
subgraph two[Developping]
direction LR
D[create a function]-->E("use_test()")
D-->F("use_r()")
D-->G("use_packge()")
F-->H["Insert Roxygen skeleton"]
H-->I("document()")
end
subgraph git
staged --> commit
end
one --> two
two -->|often| Y("check()")
two --> X("install()")
one --> git
two --> git
git --> Github
click A href "https://usethis.r-lib.org/reference/create_package.html"
click C href "https://usethis.r-lib.org/reference/use_git.html"
click B href "https://usethis.r-lib.org/reference/licenses.html"
click Z href "https://r-pkgs.org/Whole-game.html#use_testthat"
click E href "https://usethis.r-lib.org/reference/use_r.html"
click F href "https://usethis.r-lib.org/reference/use_r.html"
click G href "https://usethis.r-lib.org/reference/use_package.html"
click I href "https://devtools.r-lib.org/reference/document.html"
click Y href "https://r-pkgs.org/Whole-game.html#check"
click X href "https://devtools.r-lib.org/reference/install.html"
Last active
January 25, 2023 19:02
-
-
Save defuneste/ff2d3e040078234ae483ebeee4db4822 to your computer and use it in GitHub Desktop.
The whole Game (from Hadley Wickham and Jenny Bryan ) in mermaid
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment