lolog is a modular package, and can be extended at both the R and C++ level. This function will build a package skeleton that can be used as a starting point for development. To create the package in the current directory run:
lologPackageSkeleton()
Build and install the package from the command line with
R CMD build LologExtension
R CMD INSTALL LologExtension_1.0.tar.gz
Examples
## Not run:#install packagelologPackageSkeleton()system("R CMD build LologExtension")system("R CMD INSTALL LologExtension_1.0.tar.gz")library(LologExtension)#Load package# Run model with new minDegree statisticlibrary(network)m <- matrix(0,20,20)for(i in1:19)for(j in(i+1):20) m[i,j]<- m[j,i]<- rbinom(1,1,.1)g <- network(m, directed=FALSE)fit <- lologVariational(g ~ edges()+ minDegree(1L))summary(fit)## End(Not run)