Often needed RStudio Community snippets

Han Oostdijk

2020/07/28

Date last run: 01Nov2022

Reprex

We don’t really have enough info to help you out. Could I ask you to provide a minimal REPRoducible EXample (reprex)? A reprex makes it much easier for others to understand your issue and figure out how to help. A reprex consists of the minimal code and data needed to recreate the issue/question you’re having. You can find instructions how to build and share one here:

https://community.rstudio.com/t/faq-whats-a-reproducible-example-reprex-and-how-do-i-do-one/5219

https://community.rstudio.com/t/faq-how-to-do-a-minimal-reproducible-example-reprex-for-beginners/23061

Introductory texts about R

Cheat sheets

https://rstudio.com/resources/cheatsheets/

Avoid package startup messages

suppressPackageStartupMessages(
  { library(dplyr); library(purrr); library(knitr) 
    library(tibble); library(here) }

)