-
-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathsample_last_cit.Rd
More file actions
121 lines (107 loc) · 3.36 KB
/
sample_last_cit.Rd
File metadata and controls
121 lines (107 loc) · 3.36 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/games.R
\name{sample_last_cit}
\alias{sample_last_cit}
\alias{last_cit}
\alias{sample_cit_types}
\alias{cit_types}
\alias{sample_cit_cit_types}
\alias{cit_cit_types}
\title{Random citation graphs}
\usage{
sample_last_cit(n, edges = 1, agebins, pref, directed = TRUE)
last_cit(...)
sample_cit_types(
n,
edges = 1,
types = rep(0, n),
pref = rep(1, length(types)),
directed = TRUE,
attr = TRUE
)
cit_types(...)
sample_cit_cit_types(
n,
edges = 1,
types = rep(0, n),
pref = matrix(1, nrow = length(types), ncol = length(types)),
directed = TRUE,
attr = TRUE
)
cit_cit_types(...)
}
\arguments{
\item{n}{Number of vertices.}
\item{edges}{Number of edges per step.}
\item{agebins}{Number of aging bins.
Must be at least 1.
This determines how finely the aging process is discretized.}
\item{pref}{Vector (\code{sample_last_cit()} and \code{sample_cit_types()} or
matrix (\code{sample_cit_cit_types()}) giving the (unnormalized) citation
probabilities for the different vertex types.
For \code{sample_last_cit()}, this should be a numeric vector of length \code{agebins + 1}.
A common choice is a power-law decay, e.g., \code{(1:(agebins + 1))^-3}.}
\item{directed}{Logical scalar, whether to generate directed networks.}
\item{...}{Passed to the actual constructor.}
\item{types}{Vector of length \sQuote{\code{n}}, the types of the vertices.
Types are numbered from zero.}
\item{attr}{Logical scalar, whether to add the vertex types to the generated
graph as a vertex attribute called \sQuote{\code{type}}.}
}
\value{
A new graph.
}
\description{
\code{sample_last_cit()} creates a graph, where vertices age, and
gain new connections based on how long ago their last citation
happened.
}
\details{
\code{sample_cit_cit_types()} is a stochastic block model where the
graph is growing.
\code{sample_cit_types()} is similarly a growing stochastic block model,
but the probability of an edge depends on the (potentially) cited
vertex only.
}
\examples{
# Create a citation graph with 100 vertices, 5 age bins,
# and preferential attachment following a t^-3 power-law decay
g <- sample_last_cit(100, edges = 1, agebins = 5, pref = (1:6)^-3)
# The preference vector determines how likely vertices in each age bin
# are to receive citations. Newer vertices (lower indices) are preferred.
g2 <- sample_last_cit(200, edges = 2, agebins = 10, pref = (1:11)^-2)
}
\seealso{
Random graph models (games)
\code{\link{bipartite_gnm}()},
\code{\link{erdos.renyi.game}()},
\code{\link{sample_}()},
\code{\link{sample_bipartite}()},
\code{\link{sample_chung_lu}()},
\code{\link{sample_correlated_gnp}()},
\code{\link{sample_correlated_gnp_pair}()},
\code{\link{sample_degseq}()},
\code{\link{sample_dot_product}()},
\code{\link{sample_fitness}()},
\code{\link{sample_fitness_pl}()},
\code{\link{sample_forestfire}()},
\code{\link{sample_gnm}()},
\code{\link{sample_gnp}()},
\code{\link{sample_grg}()},
\code{\link{sample_growing}()},
\code{\link{sample_hierarchical_sbm}()},
\code{\link{sample_islands}()},
\code{\link{sample_k_regular}()},
\code{\link{sample_pa}()},
\code{\link{sample_pa_age}()},
\code{\link{sample_pref}()},
\code{\link{sample_sbm}()},
\code{\link{sample_smallworld}()},
\code{\link{sample_traits_callaway}()},
\code{\link{sample_tree}()}
}
\author{
Gabor Csardi \email{csardi.gabor@gmail.com}
}
\concept{games}
\keyword{graphs}