Update intro.Rmd (#459)

* Update intro.Rmd

Typo. 

I'm not if I once seen a reference to Jenny's reprex example here but I was expecting to see a link to her github page that shows how to do the reprex.

Under the Acknowledgements section, were you thank everyone who contributed via GitHub, you seem to be pulling the username and full name (Jennifer (Jenny) Bryan, @jennybc) for the contributors.

* Update intro.Rmd
This commit is contained in:
S'busiso Mkhondwane 2016-10-07 15:10:51 +02:00 committed by Hadley Wickham
parent c2fbd02328
commit 7dba596fe2
1 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ If you run the same code in your local console, it will look like this:
[1] 3
```
There are two main diferences. In your console, you type after the `>`, called the __prompt__; we don't show the prompt in the book. In the book, output is commented out with `#>`; in your console it appears directly after your code. These two differences mean that if you're working with an electronic version of the book, you can easily copy code out of the book and into the console.
There are two main differences. In your console, you type after the `>`, called the __prompt__; we don't show the prompt in the book. In the book, output is commented out with `#>`; in your console it appears directly after your code. These two differences mean that if you're working with an electronic version of the book, you can easily copy code out of the book and into the console.
Throughout the book we use a consistent set of conventions to refer to code:
@ -187,7 +187,7 @@ This book is not an island; there is no single resource that will allow you to m
If you get stuck, start with Google. Typically adding "R" to a query is enough to restrict it to relevant results: if the search isn't useful, it often means that there aren't any R-specific results available. Google is particularly useful for error messages. If you get an error message and you have no idea what it means, try googling it! Chances are that someone else has been confused by it in the past, and there will be help somewhere on the web. (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.)
If Google doesn't help, try [stackoverflow](http://stackoverflow.com). Start by spending a little time searching for an existing answer, including `[R]` to restrict your search to questions and answers that use R. If you don't find anything useful, prepare a minimal reproducible example or __reprex__. A good reprex makes it easier for other people to help you, and often you'll figure out the problem yourself in the course of making it.
If Google doesn't help, try [stackoverflow](http://stackoverflow.com). Start by spending a little time searching for an existing answer, including `[R]` restrict your search to questions and answers that use R. If you don't find anything useful, prepare a minimal reproducible example or __reprex__. A good reprex makes it easier for other people to help you, and often you'll figure out the problem yourself in the course of making it.
There are three things you need to include to make your example reproducible: required packages, data, and code.