Giter Site home page Giter Site logo

Comments (3)

garrettgman avatar garrettgman commented on June 16, 2024

I went ahead and did this, but can undo it if necessary.

So now the user can specify how to work with DST:

date <- as.POSIXct("2009-03-08 01:59:00")
  "2009-03-08 01:59:00 CST"

relative - consistent clock time
options(DST = "relative")
date + days(1)
"2009-03-09 01:59:00 CDT"

exact - consistent time lengths
options(DST = "exact")
date + days(1)
"2009-03-09 02:59:00 CDT"

from lubridate.

garrettgman avatar garrettgman commented on June 16, 2024

This also solves
mday(date) <- 9
date
"2009-03-09 02:59:00 CDT"
setting day value, also "set" hour value. Is this desirable? User can avoid with:
options(DST = "relative")
mday(date) <- 9
date
"2009-03-09 01:59:00 CDT"

from lubridate.

garrettgman avatar garrettgman commented on June 16, 2024

I removed the options method. When a period is added to a date-time, R will ignore DST and just change to clock time of the date appropriately. When a duration is added to a date, R will maintain exact time intervals. So if DST occurs the resulting clock time will differ by an hour.

For one hour out of the year, this will appear not to work: when springing ahead (in the spring) the hour from 2:00am - 3:00am does not exist. R will express these clock times in the 1:00 hour. But all period math works, and once the date-time leaves this hour the clock time will appear appropriately. This is an R issue and I don't know how to change it.

from lubridate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.