Package 'cheatsheet'

Title: Download R Cheat Sheets Locally
Description: A simple package to grab cheat sheets and save them to your local computer.
Authors: Brad Lindblad [aut, cre], Posit [cph]
Maintainer: Brad Lindblad <[email protected]>
License: MIT + file LICENSE
Version: 0.1.2.9000
Built: 2024-12-25 03:26:05 UTC
Source: https://github.com/bradlindblad/cheatsheet

Help Index


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:


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/

Examples

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

## End(Not run)

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

Description

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

Usage

list_languages()

Value

No return value; called for side effects.

Examples

## Not run: 
list_languages()

## End(Not run)