powered by
coef is a Method which extracts model coefficients from objects returned by the ergm function. coefficients is an alias for it.
coef
ergm
coefficients
# S3 method for ergm coef(object, …)# S3 method for ergm coefficients(object, …)
# S3 method for ergm coefficients(object, …)
an object for which the extraction of model coefficients is meaningful.
other arguments.
Coefficients extracted from the model object object.
object
fitted.values and residuals for related methods; glm, lm for model fitting.
fitted.values
residuals
glm
lm
# NOT RUN { data(molecule) molecule %v% "atomic type" <- c(1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,3,3,3,3) fit <- ergm(molecule ~ edges + nodefactor("atomic type")) coef(fit) # }
Run the code above in your browser using DataLab