From 7e5e57472825136f831a8a82026c106310245dc6 Mon Sep 17 00:00:00 2001 From: Brandon Greenwell Date: Fri, 5 Aug 2016 09:52:52 -0400 Subject: [PATCH] Fixed typo (#233) --- datetimes.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datetimes.Rmd b/datetimes.Rmd index a2dc420..9ee6784 100644 --- a/datetimes.Rmd +++ b/datetimes.Rmd @@ -8,7 +8,7 @@ This chapter will show you how to work with dates and times in R. At first glanc * Does every day have 24 hours? * Does every minute have 60 seconds? -I'm sure you know that not every year has 365 days, but but do you know the full rule for determining if a year is a leap year? You might have remembered that many parts of the world use daylight savings time (DST), so that some days have 23 hours, and others have 25. You probably didn't know that some minutes have 61 seconds because every now and then leap seconds are added to keep because the Earth's rotation is gradually slowing down. +I'm sure you know that not every year has 365 days, but do you know the full rule for determining if a year is a leap year? You might have remembered that many parts of the world use daylight savings time (DST), so that some days have 23 hours, and others have 25. You probably didn't know that some minutes have 61 seconds because every now and then leap seconds are added to keep because the Earth's rotation is gradually slowing down. Dates and times are hard because they have to reconcile two physical phenonmen (the rotation of the Earth and its orbit around the sun) with a whole raft of geopolitical phenonmeon including months, time zones, and DST. This chapter won't teach you every last detail about dates and times, but it will give you a solid grounding of practical skills that will help you with common data analysis challenges.