R/blkergm.R

Defines functions blkergm

Documented in blkergm

blkergm = function(formula,offset.coef=NULL,target.stats=NULL,eval.loglik=TRUE,estimate=c("MLE","MPLE"),control=control.ergm(),verbose=FALSE,...){
	model = ergm(formula=formula,
                 constraints=~.,
                 offset.coef=offset.coef,
                 target.stats=target.stats,
                 eval.loglik=eval.loglik,
                 estimate=estimate,
                 control=control,
                 verbose=verbose,...)
    model$call = match.call()
    class(model)=c("blkergm","ergm")
    model
}

Try the blkergm package in your browser

Any scripts or data that you put into this service are public.

blkergm documentation built on May 29, 2017, 6:05 p.m.