From 3193b9f6fab8edb0a1ea7956a3678421b2bec83f Mon Sep 17 00:00:00 2001 From: Daniel Gromer Date: Mon, 3 Oct 2016 14:40:23 +0200 Subject: [PATCH] Update vectors.Rmd: typo (#426) Replace typo of two double quotes with colon. --- vectors.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectors.Rmd b/vectors.Rmd index 97a9f86..cdb5bd0 100644 --- a/vectors.Rmd +++ b/vectors.Rmd @@ -347,7 +347,7 @@ So far we've used `dplyr::filter()` to filter the rows in a tibble. `filter()` o x[x %% 2 == 0] ``` -1. If you have a named vector, you can subset it with a character vector"" +1. If you have a named vector, you can subset it with a character vector: ```{r} x <- c(abc = 1, def = 2, xyz = 5)