From fa3a3f4297f3bca812c7f8f610f344c39803813d Mon Sep 17 00:00:00 2001 From: Rademeyer Vermaak Date: Thu, 4 Aug 2016 13:55:42 +0200 Subject: [PATCH 1/2] Update datetimes.Rmd (#230) Fix double and/and --- datetimes.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datetimes.Rmd b/datetimes.Rmd index 44f2d5e..a2dc420 100644 --- a/datetimes.Rmd +++ b/datetimes.Rmd @@ -73,7 +73,7 @@ These functions also take unquoted numbers. This is the most concise way to crea ymd(20170131) ``` -`ymd()` and friends create dates. To create a date-time, add an underscore and and one or more of "h", "m", and "s" to the name of the parsing function: +`ymd()` and friends create dates. To create a date-time, add an underscore and one or more of "h", "m", and "s" to the name of the parsing function: ```{r} ymd_hms("2017-01-31 20:11:59") From 797ef2e377b46c77db61abc77e256d052a2cc82e Mon Sep 17 00:00:00 2001 From: Rademeyer Vermaak Date: Thu, 4 Aug 2016 13:56:11 +0200 Subject: [PATCH 2/2] Vectors.rmd Grammar fix (#229) --- vectors.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectors.Rmd b/vectors.Rmd index 3d9723d..221a031 100644 --- a/vectors.Rmd +++ b/vectors.Rmd @@ -308,7 +308,7 @@ There are four types of thing that you can subset a vector with: x[c(3, 2, 5)] ``` - By repeating a position, you can actually make an longer output than + By repeating a position, you can actually make a longer output than input: ```{r}