我正在尝试转换日期向量,这是可重复性最小的示例。
dates <- c("04-Nov-2013", "20-Jan-2014", "28-Jan-2014", "24-Apr-2014")
library(anytime)
anydate(dates)
我的输出是:
[1] "2013-11-04" NA NA "2014-04-24"
对于中间两个元素不正确。这是一个错误吗?我的Anytime包版本是0.1.1
sessionInfo()按要求:
sessionInfo()
R version 3.3.2 (2016-10-31)
Platform: i386-w64-mingw32/i386 (32-bit)
Running under: Windows 7 (build 7601) Service Pack 1
locale:
[1] LC_COLLATE=English_United States.1252
[2] LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] anytime_0.1.1 lazyeval_0.2.0 magrittr_1.5 lubridate_1.6.0
[5] readr_1.0.0 stringr_1.1.0 dplyr_0.5.0 tidyr_0.6.0
loaded via a namespace (and not attached):
[1] R6_2.2.0 assertthat_0.1 DBI_0.5-1 tools_3.3.2 tibble_1.2
[6] Rcpp_0.12.8 stringi_1.1.2
答案 0 :(得分:5)
我无法复制:
R> dates <- c("04-Nov-2013", "20-Jan-2014", "28-Jan-2014", "24-Apr-2014")
R> anydate(dates)
[1] "2013-11-04" "2014-01-20" "2014-01-28" "2014-04-24"
R>
我们确实在Windows64上有这个%b
格式的一个奇怪的最近错误。你在什么平台上?
该讨论在this issue ticket on GitHub进行,并确保您遵循最终目标。我确实更改了一些代码,因此您可能需要更新 - 应该进入新版本&#34; Real Soon Now&#34;。但据我所知,这个漏洞只会在Windows 64位中出现,甚至不会出现Windows 32位。