Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/malcolmbarrett/dagtex

lightly opinionated LaTeX DAGs in R
https://github.com/malcolmbarrett/dagtex

Last synced: about 2 months ago
JSON representation

lightly opinionated LaTeX DAGs in R

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "35%"
)
```

# dagtex

The goal of dagtex is to to create tikz DAGs from R. Under very early development and a bit of neglect.

## Installation

You can install the development version of dagtex from GitHub with:

``` r
# install.packages("remotes")
remotes::install_github("malcolmbarrett/dagtex")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(dagtex)

dagtex() %>%
add_node("x") %>%
add_node("y") %>%
add_edge("x", "y", is_curved = TRUE)

dagtex() %>%
add_node("u1") %>%
add_node("l") %>%
add_node("a") %>%
add_node("y") %>%
add_node("u2", below = "u1") %>%
add_node("u3", below = "l") %>%
add_edge("u1", "l") %>%
add_edge("l", "a") %>%
add_edge("u1", "y", is_curved = TRUE, annotate = annotate_edge("wow")) %>%
add_edge("l", "y", is_curved = TRUE) %>%
add_edge("u2", "l", start_position = "north", end_position = "south") %>%
add_edge("u2", "a", start_position = "north", end_position = "south") %>%
add_edge("u3", "a", start_position = "north", end_position = "south") %>%
add_edge("u3", "y", start_position = "north", end_position = "south")
```