0% found this document useful (0 votes)
26 views5 pages

Cheatsheet

Uploaded by

omylia011
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views5 pages

Cheatsheet

Uploaded by

omylia011
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Package ‘cheatsheet’

May 1, 2023
Title Download R Cheat Sheets Locally
Version 0.1.2
Description A simple package to grab cheat sheets and save them to your local computer.
License MIT + file LICENSE
Suggests testthat, covr
Encoding UTF-8
RoxygenNote 7.1.1

URL https://bradlindblad.github.io/cheatsheet/

BugReports https://github.com/bradlindblad/cheatsheet/issues
Imports magrittr, git2r, fs, crayon, cli, purrr, rstudioapi
NeedsCompilation no
Author Brad Lindblad [aut, cre],
Posit [cph]
Maintainer Brad Lindblad <[email protected]>
Repository CRAN
Date/Publication 2023-05-01 14:40:05 UTC

R topics documented:
cheatsheet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
get_all_cheatsheets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
get_translation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
list_languages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

Index 5

1
2 get_all_cheatsheets

cheatsheet cheatsheet: Download R Cheatsheets Locally.

Description
A simple package to grab cheatsheets and save them to your local computer.

Author(s)
Maintainer: Brad Lindblad <[email protected]>
Other contributors:

• RStudio [copyright holder]

See Also
Useful links:

• https://bradlindblad.github.io/cheatsheet/
• Report bugs at https://github.com/bradlindblad/cheatsheet/issues

get_all_cheatsheets get_all_cheatsheets

Description
Download all current cheat sheets as pdf files into your chosen directory

Usage
get_all_cheatsheets(local_path = ".", tidyverse_only = FALSE)

Arguments
local_path local file path to save the cheatsheets to - string
tidyverse_only only download tidyverse cheatsheets? - logical

Value
No return value; called for side effects.

Note
Downloads all pdf cheatsheets currently available as pdf from https://rstudio.com/resources/cheatsheets/
get_translation 3

Examples
## Not run:
get_all_cheatsheets("~/user/Cheatsheets", tidyverse_only = FALSE)

## End(Not run)

get_translation get_translation

Description
Download all current cheat sheets as pdf files into your chosen directory

Usage
get_translation(local_path = ".", language = NA)

Arguments
local_path local file path to save the cheatsheets to - string
language pick a language from the list obtained by running cheatsheet::list_languages()

Value
No return value; called for side effects.

Examples
## Not run:
get_translation("~/user/Cheatsheets", language = "german")

## End(Not run)

list_languages list_languages

Description
View all the languages that can be pulled using cheatsheet::get_translation()

Usage
list_languages()
4 list_languages

Value
No return value; called for side effects.

Examples
## Not run:
list_languages()

## End(Not run)
Index

cheatsheet, 2
cheatsheet-package (cheatsheet), 2

get_all_cheatsheets, 2
get_translation, 3

list_languages, 3

You might also like