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

Remove timezones no longer supported by Debian #584

Merged
merged 5 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ Config/testthat/edition: 3
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
RoxygenNote: 7.3.2
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ These are all minor breaking changes resulting from enhancements and are not exp

* When `tabyl()` is called on a data.frame containing labels, it now displays the label attribute as the name of the first column in the the resulting `tabyl` object (@olivroy, #394). This may break subsequent code that refers to the output of such a `tabyl` by column name. To maintain the previous behavior of ignoring variable labels, you can remove the labels with a function like `haven::zap_labels()` or `labelled::remove_labels()` before calling `tabyl()`.

* `sas_numeric_to_date()` now warns for timezones other than "UTC" due to the way that SAS loads timezones, and the default timezone for `sas_numeric_to_date()` is now "UTC" instead of "" (#583, @billdenney)

## New features

Expand All @@ -31,7 +32,7 @@ These are all minor breaking changes resulting from enhancements and are not exp

* Remove dplyr verbs superseded in dplyr 1.0.0 (#547, @olivroy)

* Restyle the package and vignettes according to the [tidyverse style guide](https://style.tidyverse.org) (#548, olivroy)
* Restyle the package and vignettes according to the [tidyverse style guide](https://style.tidyverse.org) (#548, @olivroy)

# janitor 2.2.0 (2023-02-02)

Expand Down
13 changes: 10 additions & 3 deletions R/sas_dates.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,16 @@
#' sas_numeric_to_date(time_num = 3600) # 01:00:00
#' @family date-time cleaning
#' @export
sas_numeric_to_date <- function(date_num, datetime_num, time_num, tz = "") {
sas_numeric_to_date <- function(date_num, datetime_num, time_num, tz = "UTC") {
# Confirm that a usable set of input arguments is given
has_date <- !missing(date_num)
has_datetime <- !missing(datetime_num)
has_time <- !missing(time_num)
stopifnot(is.character(tz))
stopifnot(length(tz) == 1)
if (tz != "UTC") {
warning("SAS may not properly store timezones other than UTC. Consider confirming the accuracy of the resulting data.")
}
if (has_date & has_datetime) {
stop("Must not give both `date_num` and `datetime_num`")
} else if (has_time & has_datetime) {
Expand All @@ -37,8 +42,10 @@ sas_numeric_to_date <- function(date_num, datetime_num, time_num, tz = "") {
if (!all(mask_na_match)) {
stop("The same values are not NA for both `date_num` and `time_num`")
}
ret <- as.POSIXct(86400 * date_num + time_num, origin = "1960-01-01", tz = tz)
} else if (has_datetime) {
datetime_num <- 86400 * date_num + time_num
has_datetime <- TRUE
}
if (has_datetime) {
ret <- as.POSIXct(datetime_num, origin = "1960-01-01", tz = tz)
} else if (has_date) {
ret <- as.Date(date_num, origin = "1960-01-01")
Expand Down
2 changes: 1 addition & 1 deletion man/sas_numeric_to_date.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/testthat/test-clean-names.R
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ test_that("tbl_graph/tidygraph", {
skip_if_not_installed("tidygraph")
# create test graph to test clean_names
test_graph <-
tidygraph::play_erdos_renyi(10, 0.5) %>%
tidygraph::play_gnp(10, 0.5) %>%
# create nodes wi
tidygraph::bind_nodes(test_df) %>%
dplyr::mutate(dplyr::across(dplyr::where(is.numeric), ~ dplyr::coalesce(x, 1)))
Expand Down
12 changes: 6 additions & 6 deletions tests/testthat/test-convert_to_date.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ test_that("convert_datetime works", {
as.POSIXct("2009-07-06 12:13:14", tz = "UTC")
)
expect_equal(
convert_to_datetime("2009-07-06 12:13:14", tz = "EST"),
as.POSIXct("2009-07-06 12:13:14", tz = "EST"),
convert_to_datetime("2009-07-06 12:13:14", tz = "Etc/GMT-5"),
as.POSIXct("2009-07-06 12:13:14", tz = "Etc/GMT-5"),
info = "The tz argument is respected"
)
expect_equal(
Expand All @@ -61,8 +61,8 @@ test_that("convert_datetime works", {
as.POSIXct("2009-07-06 02:24", tz = "UTC")
)
expect_equal(
convert_to_datetime(40000.1, tz = "EST"),
as.POSIXct("2009-07-06 02:24", tz = "EST")
convert_to_datetime(40000.1, tz = "Etc/GMT-5"),
as.POSIXct("2009-07-06 02:24", tz = "Etc/GMT-5")
)
expect_equal(
convert_to_datetime("40000"),
Expand All @@ -73,8 +73,8 @@ test_that("convert_datetime works", {
as.POSIXct("2009-07-06 02:24", tz = "UTC")
)
expect_equal(
convert_to_datetime("40000.1", tz = "EST"),
as.POSIXct("2009-07-06 02:24", tz = "EST")
convert_to_datetime("40000.1", tz = "Etc/GMT-5"),
as.POSIXct("2009-07-06 02:24", tz = "Etc/GMT-5")
)
expect_equal(
convert_to_datetime(factor("40000.1")),
Expand Down
8 changes: 4 additions & 4 deletions tests/testthat/test-excel_time_to_numeric.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ test_that("excel_time_to_numeric POSIX objects extract the correct part of the t
})

test_that("excel_time_to_numeric POSIX objects ignore the time zone", {
expect_equal(excel_time_to_numeric(as.POSIXct("1899-12-31 13:00", tz = "EST")), 13 * 3600)
expect_equal(excel_time_to_numeric(as.POSIXct("1899-12-31 13:00", tz = "Etc/GMT-5")), 13 * 3600)
expect_equal(excel_time_to_numeric(as.POSIXct("1899-12-31 13:00", tz = "UTC")), 13 * 3600)
expect_equal(
excel_time_to_numeric(
as.POSIXct(c("1899-12-31 13:00", "1899-12-31 13:00"), tz = "EST")
as.POSIXct(c("1899-12-31 13:00", "1899-12-31 13:00"), tz = "Etc/GMT-5")
),
rep(13 * 3600, 2)
)
})

test_that("excel_time_to_numeric POSIXlt works like POSIXct", {
expect_equal(
excel_time_to_numeric(as.POSIXct("1899-12-31 13:00", tz = "EST")),
excel_time_to_numeric(as.POSIXlt("1899-12-31 13:00", tz = "EST"))
excel_time_to_numeric(as.POSIXct("1899-12-31 13:00", tz = "Etc/GMT-5")),
excel_time_to_numeric(as.POSIXlt("1899-12-31 13:00", tz = "Etc/GMT-5"))
)
})

Expand Down
14 changes: 10 additions & 4 deletions tests/testthat/test-sas_dates.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ test_that("sas_numeric_to_date", {
)
# NA management
expect_equal(
sas_numeric_to_date(date_num = c(NA, 1), time_num = c(NA, 1), tz = "EST"),
as.POSIXct(c(NA, "1960-01-01 19:00:01"), tz = "EST")
sas_numeric_to_date(date_num = c(NA, 1), time_num = c(NA, 1), tz = "UTC"),
as.POSIXct(c(NA, "1960-01-02 00:00:01"), tz = "UTC")
)
expect_equal(
sas_numeric_to_date(date_num = NA, time_num = NA, tz = "EST"),
as.POSIXct(NA, tz = "EST")
sas_numeric_to_date(date_num = NA, time_num = NA, tz = "UTC"),
as.POSIXct(NA, tz = "UTC")
)
# Timezone warning (#583)
expect_warning(
sas_numeric_to_date(date_num = 1, time_num = 1, tz = "America/New_York"),
regexp = "SAS may not properly store timezones other than UTC. Consider confirming the accuracy of the resulting data.",
fixed = TRUE
)
})

Expand Down