From 98dc37c2f44c6c5492d3f33edd6c301df7f65fce Mon Sep 17 00:00:00 2001 From: jonathanflint Date: Mon, 3 Oct 2016 13:18:05 +0100 Subject: [PATCH] Update datetimes.Rmd (#412) Correct error where "appears" is used for a list - should be "appear". --- datetimes.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datetimes.Rmd b/datetimes.Rmd index 332b304..419a549 100644 --- a/datetimes.Rmd +++ b/datetimes.Rmd @@ -61,7 +61,7 @@ They work as follows. ### From strings -Date/time data often comes as strings. You've seen one approach to parsing strings into date-times in [date-times](#readr-datetimes). Another approach is to use the helpers provided by lubridate. They automatically work out the format once you specify the order of the component. To use them, identify the order in which year, month, and day appears in your dates, then arrange "y", "m", and "d" in the same order. That gives you the name of the lubridate function that will parse your date. For example: +Date/time data often comes as strings. You've seen one approach to parsing strings into date-times in [date-times](#readr-datetimes). Another approach is to use the helpers provided by lubridate. They automatically work out the format once you specify the order of the component. To use them, identify the order in which year, month, and day appear in your dates, then arrange "y", "m", and "d" in the same order. That gives you the name of the lubridate function that will parse your date. For example: ```{r} ymd("2017-01-31")