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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/games.R
\name{lastcit.game}
\alias{lastcit.game}
\title{Random citation graphs}
\usage{
lastcit.game(
n,
edges = 1,
agebins = n/7100,
pref = (1:(agebins + 1))^-3,
directed = TRUE
)
}
\arguments{
\item{n}{Number of vertices.}
\item{edges}{Number of edges per step.}
\item{agebins}{Number of aging bins.}
\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.}
\item{directed}{Logical scalar, whether to generate directed networks.}
}
\description{
\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#deprecated}{\figure{lifecycle-deprecated.svg}{options: alt='[Deprecated]'}}}{\strong{[Deprecated]}}
\code{lastcit.game()} was renamed to \code{sample_last_cit()} to create a more
consistent API.
}
\keyword{internal}
|