├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── Bergm.Rproj ├── DESCRIPTION ├── NAMESPACE ├── R ├── Bergm-package.R ├── bergm.R ├── bergmC.R ├── bergmM.R ├── bgof.R ├── ergmAPL.R ├── evidence.R ├── evidenceCJ.R ├── evidencePP.R ├── lazega.R ├── plot.bergm.R └── summary.bergm.R ├── README.md ├── data └── lazega.rda ├── inst ├── CITATION └── WORDLIST ├── man ├── Bergm-package.Rd ├── bergm.Rd ├── bergmC.Rd ├── bergmM.Rd ├── bgof.Rd ├── ergmAPL.Rd ├── evidence.Rd ├── evidenceCJ.Rd ├── evidencePP.Rd ├── lazega.Rd ├── plot.bergm.Rd └── summary.bergm.Rd └── tests └── spelling.R /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/.gitignore -------------------------------------------------------------------------------- /Bergm.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/Bergm.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/Bergm-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/Bergm-package.R -------------------------------------------------------------------------------- /R/bergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/bergm.R -------------------------------------------------------------------------------- /R/bergmC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/bergmC.R -------------------------------------------------------------------------------- /R/bergmM.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/bergmM.R -------------------------------------------------------------------------------- /R/bgof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/bgof.R -------------------------------------------------------------------------------- /R/ergmAPL.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/ergmAPL.R -------------------------------------------------------------------------------- /R/evidence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/evidence.R -------------------------------------------------------------------------------- /R/evidenceCJ.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/evidenceCJ.R -------------------------------------------------------------------------------- /R/evidencePP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/evidencePP.R -------------------------------------------------------------------------------- /R/lazega.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/lazega.R -------------------------------------------------------------------------------- /R/plot.bergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/plot.bergm.R -------------------------------------------------------------------------------- /R/summary.bergm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/R/summary.bergm.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/README.md -------------------------------------------------------------------------------- /data/lazega.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/data/lazega.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/Bergm-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/Bergm-package.Rd -------------------------------------------------------------------------------- /man/bergm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/bergm.Rd -------------------------------------------------------------------------------- /man/bergmC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/bergmC.Rd -------------------------------------------------------------------------------- /man/bergmM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/bergmM.Rd -------------------------------------------------------------------------------- /man/bgof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/bgof.Rd -------------------------------------------------------------------------------- /man/ergmAPL.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/ergmAPL.Rd -------------------------------------------------------------------------------- /man/evidence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/evidence.Rd -------------------------------------------------------------------------------- /man/evidenceCJ.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/evidenceCJ.Rd -------------------------------------------------------------------------------- /man/evidencePP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/evidencePP.Rd -------------------------------------------------------------------------------- /man/lazega.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/lazega.Rd -------------------------------------------------------------------------------- /man/plot.bergm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/plot.bergm.Rd -------------------------------------------------------------------------------- /man/summary.bergm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/man/summary.bergm.Rd -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaimo/Bergm/HEAD/tests/spelling.R --------------------------------------------------------------------------------