9 Getting help

9.1 Help yourself

  • Carefully read the error message. Often it won’t help, but sometimes there are hints that will help you get started.

  • If you encounter an error message you don’t understand, strip anything highly specific (like your object or variable names), surround it with quotes and Google it!

    (If the error message isn’t in English, run Sys.setenv(LANGUAGE = "en") and re-run the code; you’re more likely to find help for English error messages.)

  • Search the tidyverse community. If you can’t find an answer, you can pose a question using a reprex as explained below.

9.2 Get help from others

If someone has the wit and knowledge to answer your question, they probably have other things they would like to do. Making your message clear, concise and user-friendly gives you the best hope of at least one of those strangers diverting their attention away from their life towards your problem.

— The 9th circle of The R Inferno

If you need help getting unstuck, the first step is to create a reprex, or reproducible example. The goal of a reprex is to package your problematic code in such a way that other people can run it and feel your pain. Then, hopefully, they can provide a solution and put you out of your misery.

There are two parts to creating a reprex:

  • First, you need to make your code reproducible. This means that you need to capture everything, i.e., include any library() calls and create all necessary objects. The easiest way to make sure you’ve done this is to use the reprex package (see below).

  • Second, you need to make it minimal. Strip away everything that is not directly related to your problem until removing any remaining code will either remove your problem or cause a new error. This usually involves creating a much smaller and simpler R object than the one you’re facing in real life or even using built-in data.

That sounds like a lot of work! And it can be, but it has a great payoff:

  • 80% of the time creating an excellent reprex reveals the source of your problem. It’s amazing how often the process of writing up a self-contained and minimal example allows you to answer your own question.

  • The other 20% of time you will have captured the essence of your problem in a way that is easy for others to play with. This substantially improves your chances of getting help!

9.2.1 The reprex package

When creating a reprex by hand, it’s easy to accidentally miss something that means your code can’t be run on someone else’s computer. Avoid this problem by using the reprex package. It’s installed as part of the tidyverse. Go ahead and load it.

library(reprex)

Write a bit of code and copy it to the clipboard:

y <- 1:4
y
mean(y)

Enter reprex() in the R Console. In RStudio, you’ll see a preview of your rendered reprex.

y <- 1:4
y
#> [1] 1 2 3 4
mean(y)
#> [1] 2.5

It is now ready and waiting on your clipboard, so you can paste it into, say, a GitHub issue. If your code creates an image, reprex will create the image and embed a link to it.

If your code is not self-contained, running reprex() results in an error. It may feel like tough love, but this way you can get your story straight in private. The reprex format also strongly encourages you to find the minimal dataset necessary to show your problem. Creating an effective reprex is a learned skill and the immediate feedback from reprex makes this very concrete.

9.2.2 More resources on asking good questions