Skip to content

Instantly share code, notes, and snippets.

@stephlocke
Created March 28, 2015 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephlocke/2ecacc48b82d519a66d9 to your computer and use it in GitHub Desktop.
Save stephlocke/2ecacc48b82d519a66d9 to your computer and use it in GitHub Desktop.
DiagrammeR 1st step
if (!require(DiagrammeR)) install.packages(DiagrammeR)
library(DiagrammeR)
hangs<-"graph TB
D[Data] --> R[Read into memory]
R --> DM[Data manipulation]
DM --> V[Visualisation]
DM --> O[Output]
V --> Do[Document]
Do --> O
V --> I[Interactive report]
I --> O"
mermaid(hangs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment