├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── LRtestvar.R ├── acipair-data.R ├── alliance-data.R ├── apim.R ├── confintLME.R ├── counts_labels.R ├── crsp.R ├── dyadic_trade-data.R ├── getevd.R ├── graphMod.R ├── lincomb.R ├── mmc.R ├── smallsummary.R ├── sobel.R ├── testvar.R ├── var_labels.R └── variable_view.R ├── README.Rmd ├── README.md ├── data ├── acipair.RData ├── alliance.rda └── dyadic_trade.rda ├── dyadr.Rproj ├── man ├── LRtestvar.Rd ├── acipair.Rd ├── alliance.Rd ├── apim.Rd ├── confintLME.Rd ├── counts_labels.Rd ├── crsp.Rd ├── dyadic_trade.Rd ├── getevd.Rd ├── graphMod.Rd ├── lincomb.Rd ├── mmc.Rd ├── smallsummary.Rd ├── sobel.Rd ├── testvar.Rd ├── var_labels.Rd └── variable_view.Rd ├── tests ├── testthat.R └── testthat │ └── test_dyadr.R └── vignettes ├── .gitignore └── dyadr_vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | inst/doc 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/LRtestvar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/LRtestvar.R -------------------------------------------------------------------------------- /R/acipair-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/acipair-data.R -------------------------------------------------------------------------------- /R/alliance-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/alliance-data.R -------------------------------------------------------------------------------- /R/apim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/apim.R -------------------------------------------------------------------------------- /R/confintLME.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/confintLME.R -------------------------------------------------------------------------------- /R/counts_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/counts_labels.R -------------------------------------------------------------------------------- /R/crsp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/crsp.R -------------------------------------------------------------------------------- /R/dyadic_trade-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/dyadic_trade-data.R -------------------------------------------------------------------------------- /R/getevd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/getevd.R -------------------------------------------------------------------------------- /R/graphMod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/graphMod.R -------------------------------------------------------------------------------- /R/lincomb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/lincomb.R -------------------------------------------------------------------------------- /R/mmc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/mmc.R -------------------------------------------------------------------------------- /R/smallsummary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/smallsummary.R -------------------------------------------------------------------------------- /R/sobel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/sobel.R -------------------------------------------------------------------------------- /R/testvar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/testvar.R -------------------------------------------------------------------------------- /R/var_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/var_labels.R -------------------------------------------------------------------------------- /R/variable_view.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/R/variable_view.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/README.md -------------------------------------------------------------------------------- /data/acipair.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/data/acipair.RData -------------------------------------------------------------------------------- /data/alliance.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/data/alliance.rda -------------------------------------------------------------------------------- /data/dyadic_trade.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/data/dyadic_trade.rda -------------------------------------------------------------------------------- /dyadr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/dyadr.Rproj -------------------------------------------------------------------------------- /man/LRtestvar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/LRtestvar.Rd -------------------------------------------------------------------------------- /man/acipair.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/acipair.Rd -------------------------------------------------------------------------------- /man/alliance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/alliance.Rd -------------------------------------------------------------------------------- /man/apim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/apim.Rd -------------------------------------------------------------------------------- /man/confintLME.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/confintLME.Rd -------------------------------------------------------------------------------- /man/counts_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/counts_labels.Rd -------------------------------------------------------------------------------- /man/crsp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/crsp.Rd -------------------------------------------------------------------------------- /man/dyadic_trade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/dyadic_trade.Rd -------------------------------------------------------------------------------- /man/getevd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/getevd.Rd -------------------------------------------------------------------------------- /man/graphMod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/graphMod.Rd -------------------------------------------------------------------------------- /man/lincomb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/lincomb.Rd -------------------------------------------------------------------------------- /man/mmc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/mmc.Rd -------------------------------------------------------------------------------- /man/smallsummary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/smallsummary.Rd -------------------------------------------------------------------------------- /man/sobel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/sobel.Rd -------------------------------------------------------------------------------- /man/testvar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/testvar.Rd -------------------------------------------------------------------------------- /man/var_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/var_labels.Rd -------------------------------------------------------------------------------- /man/variable_view.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/man/variable_view.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_dyadr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/tests/testthat/test_dyadr.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/dyadr_vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RandiLGarcia/dyadr/HEAD/vignettes/dyadr_vignette.Rmd --------------------------------------------------------------------------------