-
Notifications
You must be signed in to change notification settings - Fork 18
/
README.Rmd
56 lines (40 loc) · 1.2 KB
/
README.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
52
53
54
55
56
---
output: downlit::readme_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, setup, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
comment = "#>"
)
```
```{r, echo = FALSE, results = 'hide'}
options(pager = function(files, header, title, delete.file) {
for (f in files) {
l <- readLines(f)
cat(l, sep = "\n")
}
})
```
# Data sets for the igraph R package
[![Linux build status](https://travis-ci.org/igraph/igraphdata.png)](https://travis-ci.org/igraph/igraphdata)
[![Windows build status](https://ci.appveyor.com/api/projects/status/6wov9hh8oprrpkhs?svg=true)](https://ci.appveyor.com/project/gaborcsardi/igraphdata)
This is a data R package, that contains network data sets,
to be used with the igraph R package.
## Installation
From CRAN:
```{r, eval = FALSE}
install.packages("igraphdata")
```
You can install the development version from Github, using the
[devtools package](https://github.com/hadley/devtools):
```{r, eval = FALSE}
devtools::install_github("igraph/igraphdata")
```
## Usage
```{r}
library(igraphdata)
data(package = "igraphdata")
```
# License
CC BY-SA 4.0, plus see [LICENSE](LICENSE) for the licenses of the
individual data sets.