私の目的は、クラス Security のスロットの 1 つを別のクラス Quote として定義することです。
まず、クラス Quote を定義します。
Quote <- setClass("Quote", slots = c(Last = "numeric", Settle = "numeric"))
次に、クラス Security を次のように定義しようとしています。
Security <- setClass("Security", slots = c(Name = "character", Price = "Quote"))
最後に、クラス Security のコンストラクターを作成しようとしています。
Security <- function(Name = character(), Last = numeric(), Settle = numeric())
new("Security", Name = Name, Price@Last = Last, Price@Settle = Settle)
残念ながら、このコードは機能しません...
前もって感謝します。