├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── sparsebn-main.R ├── sparsebn-plotting.R ├── sparsebn.R └── zzz.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data ├── cytometryContinuous.rda ├── cytometryDiscrete.rda └── pathfinder.rda ├── inst └── CITATION ├── man ├── cytometryContinuous.Rd ├── cytometryDiscrete.Rd ├── estimate.covariance.Rd ├── estimate.dag.Rd ├── pathfinder.Rd ├── plotDAG.Rd └── sparsebn.Rd ├── sparsebn.Rproj ├── tests ├── testthat.R └── testthat │ ├── helper-sparsebnUtils-generate_objects.R │ ├── test-bwlist.R │ ├── test-covariance.R │ ├── test-cytometry.R │ ├── test-dag.R │ ├── test-plotDAG.R │ └── test-precision.R └── vignettes └── sparsebn-vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/R/data.R -------------------------------------------------------------------------------- /R/sparsebn-main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/R/sparsebn-main.R -------------------------------------------------------------------------------- /R/sparsebn-plotting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/R/sparsebn-plotting.R -------------------------------------------------------------------------------- /R/sparsebn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/R/sparsebn.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/cytometryContinuous.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/data/cytometryContinuous.rda -------------------------------------------------------------------------------- /data/cytometryDiscrete.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/data/cytometryDiscrete.rda -------------------------------------------------------------------------------- /data/pathfinder.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/data/pathfinder.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/cytometryContinuous.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/cytometryContinuous.Rd -------------------------------------------------------------------------------- /man/cytometryDiscrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/cytometryDiscrete.Rd -------------------------------------------------------------------------------- /man/estimate.covariance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/estimate.covariance.Rd -------------------------------------------------------------------------------- /man/estimate.dag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/estimate.dag.Rd -------------------------------------------------------------------------------- /man/pathfinder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/pathfinder.Rd -------------------------------------------------------------------------------- /man/plotDAG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/plotDAG.Rd -------------------------------------------------------------------------------- /man/sparsebn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/man/sparsebn.Rd -------------------------------------------------------------------------------- /sparsebn.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/sparsebn.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-sparsebnUtils-generate_objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/helper-sparsebnUtils-generate_objects.R -------------------------------------------------------------------------------- /tests/testthat/test-bwlist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/test-bwlist.R -------------------------------------------------------------------------------- /tests/testthat/test-covariance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/test-covariance.R -------------------------------------------------------------------------------- /tests/testthat/test-cytometry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/test-cytometry.R -------------------------------------------------------------------------------- /tests/testthat/test-dag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/test-dag.R -------------------------------------------------------------------------------- /tests/testthat/test-plotDAG.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/test-plotDAG.R -------------------------------------------------------------------------------- /tests/testthat/test-precision.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/tests/testthat/test-precision.R -------------------------------------------------------------------------------- /vignettes/sparsebn-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsrainingdata/sparsebn/HEAD/vignettes/sparsebn-vignette.Rmd --------------------------------------------------------------------------------