-
Notifications
You must be signed in to change notification settings - Fork 17
Support for R Dates and POSIXct but no support for handling timezone support #35
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
Merged
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
500aa93
initial support for rds files
jsams d9dc2ec
add support for keyword arguments (can at least manually handle list …
jsams 97d47a7
added tests and test data
jsams 78cae2c
update comments in generate_rda
jsams 4a200ff
Merge branch 'master' into rds
jsams de6e187
update readRDS to use new CodecZlib library
jsams 4c2edd4
update RDS tests to use testsets
jsams b676c46
remove todo comments
jsams d0fbcdc
factor out decompress function
jsams 363d47c
minimize testing of rds files
jsams 0c67a70
replace readRDS with load interface
jsams 8d8c1b7
remove readRDS from export list
jsams 0b6d9bf
add tests for convert=true with load of rds files
jsams 74713ef
mention rds support in news
jsams 4547834
add test for isa DataFrame for rds files
jsams 8057bce
support for R Dates and POSIXct, excluding timezone
jsams 0ceae8e
support for NA dates and datetimes
jsams 4c032ba
use constants for referring to R's date and datetime classes
jsams cb877c3
use TimeZones to support R's POSIXct
jsams 7fafd0a
merge from master and update to using 'missing'
jsams e35dc7e
Bring in line with requests on PR #35
jsams 342dfa5
move jlvec date/time functions to be with others
jsams c1bd8db
more reliable lookup of timezone
jsams f009ad4
more refactoring of r2juliatz, added back a deleted comment
jsams 982520d
update news
alyst a8da9b3
update conversion table
alyst 676cc88
refactor timezone handling
alyst e86ee6d
mention this PR in the news
alyst File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ Missings 0.2 | |
CategoricalArrays 0.3 | ||
FileIO 0.1.2 | ||
CodecZlib 0.4 | ||
TimeZones |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if
tz != tz"UTC"
, isfrom_utc
still correct?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. The tests ensure that the time and timezone is preserved for a non-UTC timezone.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this method definition is a duplicate of that imported from TimeZones