forked from rich-iannone/DiagrammeR-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
executable file
·51 lines (42 loc) · 1.88 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
title: "The DiagrammeR Package"
author: "Richard Iannone"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: rich-iannone/DiagrammeR-docs
description: "Contains information on how to use the DiagrammeR package for R."
twitter-handle: riannone
---
# This book is not yet finished {-}
In the book now (in somewhat acceptable form):
* Basic graph creation.
* Introduction to graph attributes.
* Graph selections (nodes and edges).
What is coming:
* An introduction.
* Traversals.
* Graph generators.
* Graph metrics and properties.
* Graph transformations.
* Import/Export of graphs.
* A series of graphs.
* Node positioning.
* Whole-graph algorithms.
- centrality measures.
- community detection.
* Use cases.
- Using the package to mine tweets and model as a graph.
- Taking several data tables and merging into a complex, multi-domain graph.
The repository for this book is: <https://github.com/rich-iannone/DiagrammeR-docs>
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">The DiagrammeR Package</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://github.com/rich-iannone/DiagrammeR-docs" property="cc:attributionName" rel="cc:attributionURL">Richard Iannone</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>.
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), "DiagrammeR", "rmarkdown", "bookdown"
), 'packages.bib')
```