有效的代码:duration
和period
个对象
以下代码分别成功生成duration
对象和period
对象。
> lubridate::as.duration(1)
[1] "1s"
> lubridate::seconds(1)
[1] "1S"
无效的代码:duration
中的period
和tibble
个对象
但是,当我尝试使用tibble
或duration
对象创建period
时,我会收到无法提供信息的错误消息。
> tibble::tibble(y = lubridate::as.duration(1))
Error: Incompatible duration classes (Duration, numeric). Please coerce with `as.duration`.
> tibble::tibble(y = lubridate::seconds(1))
Error in x < 0 : cannot compare Period to Duration:
coerce with 'as.numeric' first.
有效的代码:duration
中的period
和data.frame
个对象
用tibble::tibble
替换base::data.frame
。
> data.frame(y = lubridate::as.duration(1))
y
1 1s
> data.frame(y = lubridate::seconds(1))
y
1 1S
无效的代码 - 将这些data.frame
强制转换为tibbles
使用tibble::as_tibble
将这些data.frame
强制转换为tibbles
会产生与以前相同的错误。
> tibble::as_tibble(data.frame(y = lubridate::as.duration(1)))
Error: Incompatible duration classes (Duration, numeric). Please coerce with `as.duration`.
> tibble::as_tibble(data.frame(y = lubridate::seconds(1)))
Error in x < 0 : cannot compare Period to Duration:
coerce with 'as.numeric' first.
可能的解释
Hadley在这个Github问题中提到了一些问题 - https://github.com/tidyverse/tibble/issues/326 - 关于S4列,其中包括as.duration
和as.period
。没有具体提到不兼容性。
挖掘源代码,我发现以下依赖链提供了相同的错误消息:as_tibble.data.frame --> list_to_tibble --> new_tibble
在tibble:::list_to_tibble
中,传递给tibble::new_tibble
的唯一参数是x
。因此,subclass
被分配了默认值NULL
,而倒数第二行tibble::new_tibble
变为
class(x) <- c("tbl_df", "tbl", "data.frame")
对象具有结构,但尝试直接调用它们会产生错误。
> x <- data.frame(y = lubridate::as.duration(1))
> class(x) <- c("tbl_df", "tbl", "data.frame")
> str(x)
Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 1 obs. of 1 variable:
$ x:Formal class 'Duration' [package "lubridate"] with 1 slot
.. ..@ .Data: num 1
> x
Error: Incompatible duration classes (Duration, numeric). Please coerce with `as.duration`.
> x <- data.frame(y = lubridate::seconds(1))
> class(x) <- c("tbl_df", "tbl", "data.frame")
> str(x)
Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 1 obs. of 1 variable:
$ y:Formal class 'Period' [package "lubridate"] with 6 slots
.. ..@ .Data : num 1
.. ..@ year : num 0
.. ..@ month : num 0
.. ..@ day : num 0
.. ..@ hour : num 0
.. ..@ minute: num 0
> x
Error in x < 0 : cannot compare Period to Duration:
coerce with 'as.numeric' first.
因此,似乎指定data.frame
x
向量c("tbl_df", "tbl", "data.frame")
的类会导致R
尝试以某种方式强制x
错误。
此外,鉴于tibble::tibble
也会调用as_tibble
(虽然不在data.frame
上),但我会猜测我与tibble::tibble
的问题有相同的原因。
套餐版