3

文字列をPOSIXltに変換したい場合、何か問題が発生しますが、何が問題なのかわかりません。

df<-data.frame(a=c("2013-07-01 11:51:03" ,"2013-07-01 12:01:50", "2013-07-01 12:05:13"),b=1:3)
#factor(df[,"a"])
df[,"a"]<-as.POSIXlt(as.character(df[,"a"]),origin = "1960-01-01",tz="GMT")

> Warning message:
In `[<-.data.frame`(`*tmp*`, , "a", value = list(sec = c(3, 50,  :
9 variables declared, to replace 1 variablen

df<-data.frame(a=c("2013-07-01 11:51:03" ,"2013-07-01 12:01:50", "2013-07-01 12:05:13"),b=1:3)
df$a<-as.POSIXlt(as.character(df[,"a"]),origin = "1960-01-01",tz="GMT")
factor(df[,"a"])
> Error in sort.list(y) : 'x' should be atomar for 'sort.list'

今まで私は次のような回避策を使用しています

a<-as.POSIXlt(as.character(df[,"a"]),origin = "1960-01-01",tz="GMT")
df1<-data.frame(a,df[,"b"])
4

2 に答える 2

5

POSIXct を使用することをお勧めします。

df[,"a"]<-as.POSIXct(as.character(df[,"a"]),tz="GMT")

POSIXlt を使用する必要がある場合 (理由は?):

df$a <- as.POSIXlt(as.character(df[,"a"]),tz="GMT")

問題は、クラスのオブジェクトPOSIXltが実際にはリストであることです。$<-それを正しく処理できますが、[<-できません。

于 2013-09-16T08:41:42.350 に答える
3

POSIXltあなたを台無しにしているリストとしてすべてを保存します....

x <- as.POSIXlt(as.character(df[,"a"]),origin = "1960-01-01",tz="GMT")

attributes( x[1] )
$names
[1] "sec"   "min"   "hour"  "mday"  "mon"   "year"  "wday"  "yday"  "isdst"

$class
[1] "POSIXlt" "POSIXt" 

$tzone
[1] "GMT"

#  See how the list is of the first element is of length 9? Hence the error:
unlist(x[1])
#  sec   min  hour  mday   mon  year  wday  yday isdst 
#    3    51    11     1     6   113     1   181     0 

#  POSIXct doesn't do this....
y <- as.POSIXct(as.character(df[,"a"]),origin = "1960-01-01",tz="GMT")

attributes( y[1] )
$class
[1] "POSIXct" "POSIXt" 

$tzone
[1] "GMT"

#  Stores the date/time as a single element
unlist( y[1] )
#[1] "2013-07-01 11:51:03 GMT"
于 2013-09-16T08:45:50.900 に答える