0
我想創建一個新的時間系列類,其屬性是一個Zoo對象。 不幸的是,「動物園」類無法識別。在R中創建一個具有Zoo對象屬性的類S4 class
library(zoo)
setClass("timeseries", representation(ts = "zoo", name = "character"),)
Warning message:
undefined slot classes in definition of "timeseries": ts(class "zoo")
我該如何創建一個動物園對象作爲屬性的類?