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
> A <- sample_correlated_gnp_pair(n = 10, corr = .5, p = .5)$graph1
> center_graph(A, scheme = "center")
Error in validObject(.Object) :
invalid class “splrMatrix” object: superclass "mMatrix" not defined in the environment of the object's class
and I got a similar error with gm:
> AB <- sample_correlated_gnp_pair(n = 10, corr = .5, p = .5)
> A = AB$graph1
> B = AB$graph2
> gm(A, B)
Error in validObject(.Object) :
invalid class “splrMatrix” object: superclass "mMatrix" not defined in the environment of the object's class
and this:
> gm(A, B, start='convex')
Error in validObject(.Object) :
invalid class “splrMatrix” object: superclass "mMatrix" not defined in the environment of the object's class
Maybe this is not directly related, but this option also gives an error:
Ahh, that is actually a bug. You can avoid it for now using start <- init_start(nns = 10, start = 'rds_perm_bari') and then setting start = start in the gm call.
Here is an error I'm getting with
center_graph
:and I got a similar error with
gm
:and this:
Maybe this is not directly related, but this option also gives an error:
Here is my R environment.
The text was updated successfully, but these errors were encountered: