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
suppressPackageStartupMessages(library(ergm))
data(sampson)
samplike.m<- as.matrix(samplike, matrix.type="adjacency")
samplike.m[4:10,4:10] <-0mple<- ergm(samplike~edges+edgecov(samplike.m))
#> Observed statistic(s) edgecov.samplike.m are at their greatest attainable values. Their coefficients will be fixed at +Inf.mcmc<- ergm(samplike~edges+edgecov(samplike.m), control=control.ergm(force.main=TRUE, MCMLE.maxit=10))
#> Observed statistic(s) edgecov.samplike.m are at their greatest attainable values. Their coefficients will be fixed at +Inf.waldo::compare(logLik(mple), logLik(mcmc), tolerance=0.01)
#> `attr(old, 'nobs')`: 237#> `attr(new, 'nobs')`: 306#> #> `attr(old, 'br')` is absent#> `attr(new, 'br')` is a list
Created on 2024-07-23 with reprex v2.1.1
NB: Here, the
br
attribute being different is as intended. The problem is withnobs
.The text was updated successfully, but these errors were encountered: