From 39d210fb35fb6590c99c0535d7bcf22ffff28a88 Mon Sep 17 00:00:00 2001 From: kaetschap Date: Mon, 28 Nov 2016 17:52:39 +0100 Subject: [PATCH] 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() --- visualize.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visualize.Rmd b/visualize.Rmd index d862396..42a63a2 100644 --- a/visualize.Rmd +++ b/visualize.Rmd @@ -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!)