我正在尝试将字符串“2013-JAN-14”转换为日期,如下所示:
sdate1 <- "2013-JAN-14"
ddate1 <- as.Date(sdate1,format="%Y-%b-%d")
ddate1
但我明白了:
[1] NA
我做错了什么?我应该为此安装一个包(我尝试安装chron)。
答案 0 :(得分:23)
适合我。它不适合您的原因可能与您的系统区域设置有关。
?as.Date
有以下说法:
## This will give NA(s) in some locales; setting the C locale
## as in the commented lines will overcome this on most systems.
## lct <- Sys.getlocale("LC_TIME"); Sys.setlocale("LC_TIME", "C")
x <- c("1jan1960", "2jan1960", "31mar1960", "30jul1960")
z <- as.Date(x, "%d%b%Y")
## Sys.setlocale("LC_TIME", lct)
值得一试。
答案 1 :(得分:6)
下面的解决方案可能不适用于导致as.Date()返回NA的每个问题,但它确实适用于某些问题,即以因子格式读取Date变量时。
只需在.csv中读取stringsAsFactors = FALSE
data <- read.csv("data.csv", stringsAsFactors = FALSE)
data$date <- as.Date(data$date)
尝试(并且失败)使用我的系统区域设置解决NA问题后,此解决方案对我有用。
答案 2 :(得分:3)
如果您尝试将课程factor
的日期转换为课程Date
的日期,也会发生这种情况。您需要先转换为POSIXt
,否则as.Date
不知道字符串的哪一部分对应于什么。
错误的方式:直接从因子转换为日期:
a<-as.factor("24/06/2018")
b<-as.Date(a,format="%Y-%m-%d")
您将得到如下输出:
a
[1] 24/06/2018
Levels: 24/06/2018
class(a)
[1] "factor"
b
[1] NA
正确的方法,将因子转换为POSIXt,然后转换为日期
a<-as.factor("24/06/2018")
abis<-strptime(a,format="%d/%m/%Y") #defining what is the original format of your date
b<-as.Date(abis,format="%Y-%m-%d") #defining what is the desired format of your date
您将得到如下输出:
abis
[1] "2018-06-24 AEST"
class(abis)
[1] "POSIXlt" "POSIXt"
b
[1] "2018-06-24"
class(b)
[1] "Date"