You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI R 4.2 was released on April 22, and they have added an additional check for using inherits(strata, "list") instead of class(strata) == "list", for example. All these calls will need to be updated. While updating, note that inherits(x, c("a", "b")) is equivalent to inherits(x, "a") | inherits(x, "b").
The text was updated successfully, but these errors were encountered:
FYI R 4.2 was released on April 22, and they have added an additional check for using
inherits(strata, "list")
instead ofclass(strata) == "list"
, for example. All these calls will need to be updated. While updating, note thatinherits(x, c("a", "b"))
is equivalent toinherits(x, "a") | inherits(x, "b")
.The text was updated successfully, but these errors were encountered: