Displaying 2 results from an estimated 2 matches for "mother2".
Did you mean:
mother
2020 Oct 05
2
S4 - inheritance changed by order of setClassUnion and setAs()
Dear colleagues,
there is a behaviour with S4 (virtual) classes that I find very hard to understand: Depending on the position
of setAs(), the tree of inheritance changes.
This is my baseline example that defines the classes "grandma", "mother", "daughter" and a virtual
class "mr_x". For a new instance if "daughter", "mr_x" is betweeen
2020 Oct 06
0
S4 - inheritance changed by order of setClassUnion and setAs()
...matrix character
Extends:
Class "mother", directly
Class "mr_x", directly
Class "mr_y", directly
Class "grandma", by class "mother", distance 2
> setClass("grandma2", slots = c(a = "character"))
> setClass("mother2", slots = c(b = "matrix"), contains = "grandma2")
> setClass("daughter2", slots = c(c = "list"), contains = "mother2")
> setClassUnion(name = "mr_y2", members = c("daughter2", "mother2"))
> setClassUnio...