Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Dates.jl package into Base #7285

Merged
merged 0 commits into from
Jul 18, 2014
Merged

Merge Dates.jl package into Base #7285

merged 0 commits into from
Jul 18, 2014

Conversation

quinnj
Copy link
Member

@quinnj quinnj commented Jun 16, 2014

Fixes #3524.

Cross-reference: #5328, quinnj/Dates.jl#6, quinnj/Datetime.jl#12.

@johnmyleswhite
Copy link
Member

🍰

@quinnj
Copy link
Member Author

quinnj commented Jun 17, 2014

Ok, got the travis fiddling figured out. For those unaware, this is the result of much massaging and polishing over the last 7 months or so. Much appreciation for input from @nolta and @StefanKarpinski.

To be clear on what's included (and not included) here:

  • Timezone-unaware (in python speak, LocalDate/LocalDateTime in java 8) Date and DateTime types with day and millisecond precisions, respectively. Both types assume ISO 8601 calendar standards (proleptic gregorian).
  • Accessor methods for getting the "parts" of a Date/DateTime (year,month,day,etc...)
  • A sprinkling of useful "query" functions which provide info about dates/datetimes such as dayofyear, dayofweek, dayofweekofmonth, etc.
  • Date/DateTime-Period arithmetic. Period types provided are Year,Month,Day,Week,Hour,Minute,Second,Millisecond
  • Conversion functions to other time representations, (i.e. unix, rata die days, julian days, etc.)
  • Date/DateTime range with the ability to use different Period values as the step value
  • Date/DateTime parsing/formatting; familiar with other languages/tools, a user can specify a "format" string to use in reading in or writing out Date/DateTime types in specific styles
  • Higher-order "adjuster" methods that take an "adjustment" function (also known as an "inclusion" function of the signature f(x::TimeType) --> Bool) and adjust a Date/DateTime accordingly. Examples include tonext(x::Function,dt::TimeType), toprev(x::Function,dt::TimeType), tolast(x::Function,dt::TimeType), tofirst(x::Function,dt::TimeType), as well as a recur(f::Function, dr::StepRange{T<:TimeType} that produces an array of TimeTypes according to the inclusion function. This is an extremely intuitive and easy-to-use abstraction for dealing with tricky temporal expressions. Checkout this link for some examples of what you can do with adjusters.
  • And a ton of tests....
  • Notably not included is any sign of time zones (parsing, formatting, calculations, etc.). Similar to Python's approach, time zone functionality will reside in an external package (Timezones.jl)

I'd love to get any feedback. You can also currently get all the functionality here by doing Pkg.add("Dates") if you want to try it out (though don't go putting your package dependencies on it since the plan is to get it into Base).

@aviks
Copy link
Member

aviks commented Jun 17, 2014

Woo hoo! Checking it out now. I like the (much discussed) idea of limited scope without TimeZones.

I suppose we'll need some documentation? In particular, do you have any documentatio of the format strings supported for parsing and formatting?

Finally, thanks @quinnj for your marathon efforts with dates.

@milktrader
Copy link
Contributor

When it goes into base, what happens with packages that depend on it? Do we simply leave out references to it in REQUIRE and in the module itself?

Awesome work!

@ivarne
Copy link
Sponsor Member

ivarne commented Jun 17, 2014

If this gets merged before 0.4 is released, I would guess that we could tag a version of Dates.jl that requires 0.4- that only is a empty shell without any code. That way anyone can REQUIRE Dates.jl in order to be compatible with 0.2 - 0.3.

@quinnj
Copy link
Member Author

quinnj commented Jun 17, 2014

I'm deliberately not announcing anything publicly about Dates.jl so packages don't build up dependencies, but as @ivarne mentioned, there are easy ways to ensure nothing breaks. In the case of TimeSeries, I've made sure it'll be a painless transition (pretty just just replacing using Dates with using Base.Dates).

@aviks, yes, no documentation on purpose at the moment. I'm piecing it together currently (about 75% done), but I've also held off due to inevitable bike-shedding :). This hopefully makes it easier for people to check out and play around with (in particular for @StefanKarpinski, *cough, *cough...) and figure out if this is good to go.

I tried to take a simple, yet flexible approach with the parsing/formatting code. The main idea is you can mark fields as delimited or fixed-width. With a delimited slot, you indicate what's in the field with the corresponding letter ('y'=>year, 'm'=>month, etc.) as well as the delimiter that the parser can expect to follow the field (i.e. "yy-mm-dd" will look for a '-' to indicate the end of the year field). With fixed width, you specify the width of the field by the number of letters, so "20140617" would have a format string of "yyyymmdd". There's also support for parsing arbitrary text as the month, which I think is pretty nifty. Check out the slew of examples here

@ViralBShah
Copy link
Member

Just want to register my cheering for this PR.

@lindahua
Copy link
Contributor

Amazing!

@prcastro
Copy link
Contributor

prcastro commented Jul 2, 2014

Would love to see this one merged. Good job!

@quinnj
Copy link
Member Author

quinnj commented Jul 17, 2014

I'm doing some work on the docs currently; quick question, probably best answered by doc gurus @pao or @nolta, I noticed many of the manual chapters prefix code blocks with

.. doctest::

    julia> BigInt(typemax(Int64)) + 1
    9223372036854775808

What's the .. doctest:: for? It seems that some code blocks have it and others don't.

@jakebolewski
Copy link
Member

doctests turns the examples in the documentation into actual tests to make sure they stay up to date with Base. It works similar to Python's doctest which is used throughout numpy for instance.

@quinnj
Copy link
Member Author

quinnj commented Jul 17, 2014

Ah, makes sense. So I guess it's smart enough to ignore comments, and julia> prompts when generating the tests? So my example above would be turned into a test like:

@test (BigInt(typemax(Int64)) + 1) == 9223372036854775808

@jakebolewski
Copy link
Member

It looks like it uses a mess of regular expressions so there may be corner cases it does not handle properly. Best to manually run it over the doc / tests you are working on first to inspect the output.

@tonyhffong
Copy link

Very happy to see this. Thank you.

@quinnj quinnj merged commit 5fc6e31 into master Jul 18, 2014
@quinnj
Copy link
Member Author

quinnj commented Jul 18, 2014

Shoot. Definitely did not mean to merge this. Anyone can help to revert?

@quinnj
Copy link
Member Author

quinnj commented Jul 18, 2014

Hmmm......I don't think anything actually got merged because I forced a blank local branch. Is there something to be reverted anyway?

@quinnj
Copy link
Member Author

quinnj commented Jul 18, 2014

Hmmm.........here's what I did locally:

git push -f origin jq/dates

Isn't that the right way to over-write a PR? Why did this get merged then?

@sjkelly
Copy link
Contributor

sjkelly commented Jul 18, 2014

Weird... Nothing on your author page. https://github.com/JuliaLang/julia/commits?author=quinnj

Were you pushing a squashed commit?

@quinnj
Copy link
Member Author

quinnj commented Jul 18, 2014

Yeah, I did a revamp of my local branch with new documentation and stuff, and so I was just going to overwrite the branch in this PR, but didn't end up committing my changes locally, so when I pushed, it was just an empty branch. That must have triggered github to close this somehow.

@pao
Copy link
Member

pao commented Jul 18, 2014

The other tabs in the pull request imply that it has infinite commits, but no diff. The merge commit indicated above (5fc6e31) isn't actually a merge commit. I think you managed to run into some kind of GitHub bug.

@quinnj
Copy link
Member Author

quinnj commented Jul 18, 2014

Weird. Sorry for the noise everyone. Will open a new PR soon (if the git gods feel so inclined...).

@quinnj quinnj mentioned this pull request Jul 18, 2014
@ViralBShah
Copy link
Member

Should this PR be closed in favour of the new one?

@pao
Copy link
Member

pao commented Jul 18, 2014

@ViralBShah This PR is already closed (via the bizarro-merge).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Time series support in Base?