Update visualize.Rmd (#500)

function used is tribble() but function used in the text below to describe the code snippet was tibble()
=> changed from tibble() => tribble()
This commit is contained in:
kaetschap 2016-11-28 17:52:39 +01:00 committed by Hadley Wickham
parent aa229e3bc1
commit 39d210fb35
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ This works because every geom has a default stat; and every stat has a default g
geom_bar(mapping = aes(x = a, y = b), stat = "identity")
```
(Don't worry that you haven't seen `<-` or `tibble()` before. You might be
(Don't worry that you haven't seen `<-` or `tribble()` before. You might be
able to guess at their meaning from the context, and you'll learn exactly
what they do soon!)