├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── dagtex.R ├── draw_dag.R ├── edges.R ├── nodes.R ├── utils-pipe.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── README_cache ├── latex │ ├── __packages │ ├── tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.RData │ ├── tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.rdb │ └── tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.rdx ├── tex_temp.tex ├── tex_tempDoc.tex └── texput.log ├── dagtex.Rproj └── man ├── add_edges.Rd ├── add_nodes.Rd ├── dagtex.Rd ├── figures ├── README-example-1.png ├── README-example-2.png ├── README-tikz-ex-1.pdf └── README-tikz-ex-1.png ├── get_latex_code.Rd ├── hello.Rd ├── insert_latex.Rd ├── pipe.Rd ├── plot_dagtex.Rd ├── print.dagtex.Rd └── tikz_picture.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/dagtex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/dagtex.R -------------------------------------------------------------------------------- /R/draw_dag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/draw_dag.R -------------------------------------------------------------------------------- /R/edges.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/edges.R -------------------------------------------------------------------------------- /R/nodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/nodes.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README.md -------------------------------------------------------------------------------- /README_cache/latex/__packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README_cache/latex/__packages -------------------------------------------------------------------------------- /README_cache/latex/tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README_cache/latex/tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.RData -------------------------------------------------------------------------------- /README_cache/latex/tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.rdb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README_cache/latex/tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.rdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README_cache/latex/tikz-ex_005cb6b4f3b992b2c44dc8adf4a781de.rdx -------------------------------------------------------------------------------- /README_cache/tex_temp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README_cache/tex_temp.tex -------------------------------------------------------------------------------- /README_cache/tex_tempDoc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README_cache/tex_tempDoc.tex -------------------------------------------------------------------------------- /README_cache/texput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/README_cache/texput.log -------------------------------------------------------------------------------- /dagtex.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/dagtex.Rproj -------------------------------------------------------------------------------- /man/add_edges.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/add_edges.Rd -------------------------------------------------------------------------------- /man/add_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/add_nodes.Rd -------------------------------------------------------------------------------- /man/dagtex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/dagtex.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/figures/README-example-2.png -------------------------------------------------------------------------------- /man/figures/README-tikz-ex-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/figures/README-tikz-ex-1.pdf -------------------------------------------------------------------------------- /man/figures/README-tikz-ex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/figures/README-tikz-ex-1.png -------------------------------------------------------------------------------- /man/get_latex_code.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/get_latex_code.Rd -------------------------------------------------------------------------------- /man/hello.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/hello.Rd -------------------------------------------------------------------------------- /man/insert_latex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/insert_latex.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/plot_dagtex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/plot_dagtex.Rd -------------------------------------------------------------------------------- /man/print.dagtex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/print.dagtex.Rd -------------------------------------------------------------------------------- /man/tikz_picture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmbarrett/dagtex/HEAD/man/tikz_picture.Rd --------------------------------------------------------------------------------