R - 如何将一个空的 POSIXct 列添加到已经存在的 data.frame / tibble?

R - How can I add an empty POSIXct column to a data.frame / tibble which already exists?

我可以使用 POSIXct 列初始化数据框,代码如下:

df <- data.frame(a=numeric(), b=character(), c=as.POSIXct(character()))

但是,如果我尝试将一个空的 POSIXct 列添加到 data.frame 或已经存在的 tibble,该列将转换为数字 type/class。

> df <- tibble("Index"=numeric(10))
> df[,"date"] <- as.POSIXct(character())
> df[,"date"] %>% pull %>% class()
[1] "numeric

有没有办法解决这个问题?

这对你有用吗(大部分都按照 eipi10 在 中的建议)

library(tibble) # install.packages(c("dplyr"), dependencies = TRUE)
df <- tibble(a = 1:3, b = letters[a], c = as.POSIXct(NA))

df 
#> # A tibble: 3 x 3
#>       a     b      c
#>   <int> <chr> <dttm>
#> 1     1     a     NA
#> 2     2     b     NA
#> 3     3     c     NA

str(df)
#> Classes ‘tbl_df’, ‘tbl’ and 'data.frame':
#>    3 obs. of  3 variables:
#> $ a: int  1 2 3
#> $ b: chr  "a" "b" "c"
#> $ c: POSIXct, format: NA NA ...

或者也许

df <- tibble(a = numeric(), b = character(), c = as.POSIXct(NA))
str(df)
#> Classes ‘tbl_df’, ‘tbl’ and 'data.frame':
#>   0 obs. of  3 variables:
#> $ a: num 
#> $ b: chr 
#> $ c:Classes 'POSIXct', 'POSIXt'  num(0)