Skip to content

Commit affb65e

Browse files
committed
Merge branch 'main' into f-maint-change
2 parents 9fbd680 + 2e996bc commit affb65e

22 files changed

+85
-121
lines changed

.Rbuildignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
^README.md$
22
^Makefile$
33
^tags$
4-
^appveyor.yml$
5-
^.travis.yml$
64
^inst/wikipedia$
75
^igraphdata\.Rproj$
86
^\.Rproj\.user$
97
^\.github$
8+
^README\.Rmd$

.travis.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

DESCRIPTION

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: igraphdata
22
Title: A Collection of Network Data Sets for the 'igraph' Package
3-
Version: 1.0.1.9001
3+
Version: 1.0.1.9002
44
Authors@R: c(
55
person("Gábor", "Csárdi", , role = "aut",
66
comment = c(ORCID = "0000-0001-7098-9676")),
@@ -19,10 +19,11 @@ Description: A small collection of various network data sets, to use with
1919
License: CC BY-SA 4.0 + file LICENSE
2020
URL: http://igraph.org
2121
BugReports: https://github.com/igraph/igraphdata/issues
22-
Depends:
22+
Depends:
2323
R (>= 2.10)
24-
Suggests:
25-
igraph (>= 1.0.0),
24+
Imports:
25+
igraph (>= 1.5.0)
26+
Suggests:
2627
testthat (>= 3.0.0)
2728
Encoding: UTF-8
2829
LazyData: true

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
export(lesmis_gml)
44
export(lesmis_graphml)
55
export(lesmis_pajek)
6+
importFrom(igraph,vcount)

NEWS.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11

22

3+
# igraphdata 1.0.1.9002
4+
5+
## Features
6+
7+
- Import igraph.
8+
9+
- Upgrade graphs to igraph 1.5.0.
10+
11+
## Chore
12+
13+
- Igraph on CRAN now.
14+
15+
- Turn off Travis and AppVeyor (#10).
16+
17+
- Move README.\* to root.
18+
19+
320
# igraphdata 1.0.1.9001
421

522
## Features

R/igraphdata-package.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010

1111

1212
## usethis namespace: start
13+
#' @importFrom igraph vcount
1314
## usethis namespace: end
1415
NULL
File renamed without changes.

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!-- README.md is generated from README.Rmd. Please edit that file -->
2+
3+
# Data sets for the igraph R package
4+
5+
[![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)
6+
7+
This is a data R package, that contains network data sets, to be used with the igraph R package.
8+
9+
## Installation
10+
11+
From CRAN:
12+
13+
<pre class='chroma'>
14+
<span><span class='nf'><a href='https://rdrr.io/r/utils/install.packages.html'>install.packages</a></span><span class='o'>(</span><span class='s'>"igraphdata"</span><span class='o'>)</span></span></pre>
15+
16+
You can install the development version from Github, using the [devtools package](https://github.com/hadley/devtools):
17+
18+
<pre class='chroma'>
19+
<span><span class='nf'>devtools</span><span class='nf'>::</span><span class='nf'><a href='https://remotes.r-lib.org/reference/install_github.html'>install_github</a></span><span class='o'>(</span><span class='s'>"igraph/igraphdata"</span><span class='o'>)</span></span></pre>
20+
21+
## Usage
22+
23+
<pre class='chroma'>
24+
<span><span class='kr'><a href='https://rdrr.io/r/base/library.html'>library</a></span><span class='o'>(</span><span class='nv'><a href='http://igraph.org'>igraphdata</a></span><span class='o'>)</span></span>
25+
<span><span class='nf'><a href='https://rdrr.io/r/utils/data.html'>data</a></span><span class='o'>(</span>package <span class='o'>=</span> <span class='s'>"igraphdata"</span><span class='o'>)</span></span></pre>
26+
<pre class='chroma'>
27+
<span><span class='c'>#&gt; Data sets in package 'igraphdata':</span></span>
28+
<span><span class='c'>#&gt; </span></span>
29+
<span><span class='c'>#&gt; Koenigsberg Bridges of Koenigsberg from Euler's times</span></span>
30+
<span><span class='c'>#&gt; UKfaculty Friendship network of a UK university faculty</span></span>
31+
<span><span class='c'>#&gt; USairports US airport network, 2010 December</span></span>
32+
<span><span class='c'>#&gt; enron Enron Email Network</span></span>
33+
<span><span class='c'>#&gt; foodwebs A collection of food webs</span></span>
34+
<span><span class='c'>#&gt; immuno Immunoglobulin interaction network</span></span>
35+
<span><span class='c'>#&gt; karate Zachary's karate club network</span></span>
36+
<span><span class='c'>#&gt; kite Krackhardt's kite</span></span>
37+
<span><span class='c'>#&gt; macaque Visuotactile brain areas and connections</span></span>
38+
<span><span class='c'>#&gt; rfid Hospital encounter network data</span></span>
39+
<span><span class='c'>#&gt; yeast Yeast protein interaction network</span></span></pre>
40+
41+
# License
42+
43+
CC BY-SA 4.0, plus see [LICENSE](LICENSE) for the licenses of the individual data sets.

appveyor.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)