Skip to content

Commit 388e502

Browse files
authored
Merge pull request #56 from jhollway/develop #minor
Integrated EVS data from Knoke et al 2020 chapter 5
2 parents ee0d950 + 398d45d commit 388e502

18 files changed

+135
-73
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ inst/doc
33
.Rhistory
44
.RData
55
.Ruserdata
6+
*.Rd

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: roctopus
22
Title: Utility functions for multimode and multilevel network analysis
3-
Version: 0.1.0
3+
Version: 0.2.0
44
Description: This package assembles a number of utility functions for
55
loading, visualising, and analysing multimode, multiplex, and multilevel networks.
66
URL: https://bitbucket.org/jhollway/roctopus/

R/evs.R

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#' European Values Survey, 1990 and 2008
2+
#'
3+
#' 6 two-mode matrices containing individuals' memberships to 14 different types of associations
4+
#' in three countries (Italy, Germany, and the UK) in 1990 and 2008.
5+
#' The Italy data has 658 respondents in 1990 and 540 in 2008.
6+
#' The Germany data has 1369 respondents in 1990 and 503 in 2008.
7+
#' The UK data has 738 respondents in 1990 and 664 in 2008.
8+
#'
9+
#' @docType data
10+
#' @keywords datasets
11+
#' @name evs
12+
#' @usage data(IT_1990)
13+
#' @format Data frames with 15 variables:
14+
#' \describe{
15+
#' \item{ID}{Anonymised individual identifiers}
16+
#' \item{Welfare}{1 if individual associated}
17+
#' \item{Religious}{1 if individual associated}
18+
#' \item{Education.culture}{1 if individual associated}
19+
#' \item{Unions}{1 if individual associated}
20+
#' \item{Parties}{1 if individual associated}
21+
#' \item{Local.political.groups}{1 if individual associated}
22+
#' \item{Human.rights}{1 if individual associated}
23+
#' \item{Environmental.animal}{1 if individual associated}
24+
#' \item{Professional}{1 if individual associated}
25+
#' \item{Youth}{1 if individual associated}
26+
#' \item{Sports}{1 if individual associated}
27+
#' \item{Women}{1 if individual associated}
28+
#' \item{Peace}{1 if individual associated}
29+
#' \item{Health}{1 if individual associated}
30+
#' }
31+
#' @source Knoke, Christopoulos, Diani, and Hollway. 2020. Multimodal Political Networks. Cambridge University Press: Cambridge.
32+
"IT_1990"
33+
34+
#' @rdname evs
35+
#' @usage data(IT_2008)
36+
"IT_2008"
37+
38+
#' @rdname evs
39+
#' @usage data(DE_1990)
40+
"DE_1990"
41+
42+
#' @rdname evs
43+
#' @usage data(DE_2008)
44+
"DE_2008"
45+
46+
#' @rdname evs
47+
#' @usage data(UK_1990)
48+
"UK_1990"
49+
50+
#' @rdname evs
51+
#' @usage data(UK_2008)
52+
"UK_2008"

data/DE_1990.rda

4.6 KB
Binary file not shown.

data/DE_2008.rda

2.05 KB
Binary file not shown.

data/IT_1990.rda

2.54 KB
Binary file not shown.

data/IT_2008.rda

2.28 KB
Binary file not shown.

data/UK_1990.rda

2.85 KB
Binary file not shown.

data/UK_2008.rda

2.66 KB
Binary file not shown.

man/twomode_2x2.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_clustering.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_coherence.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_components.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_constraint.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_dominance.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_modularity.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_netlm.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/twomode_smallworld.Rd

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)