igraph.undocumented {igraph}R Documentation

Undocumented and unsupportted igraph functions

Description

These functions are still in the alpha stage or their arguments are expected to change, so they're not documented yet. They are also not very useful for the general audience.

Usage

lastcit.game(n, edges=1, agebins=n/7100, pref=(1:(agebins+1))^-3,
     directed=TRUE)
cited.type.game(n, edges=1, types=rep(0, n),
     pref=rep(1, length(types)),
     directed=TRUE, attr=TRUE)
citing.cited.type.game(n, edges=1, types=rep(0, n),
    pref=matrix(1, nrow=length(types), ncol=length(types)),
    directed=TRUE, attr=TRUE)

Arguments

n

Number of vertices.

edges

Number of edges per step.

agebins

Number of aging bins.

pref

Vector (lastcit.game and cited.type.game or matrix (citing.cited.type.game) giving the (unnormalized) citation probabilities for the different vertex types.

directed

Logical scalar, whether to generate directed networks.

types

Vector of length ‘n’, the types of the vertices. Types are numbered from zero.

attr

Logical scalar, whether to add the vertex types to the generated graph as a vertex attribute called ‘type’.

Value

A new graph.

Author(s)

Gabor Csardi csardi.gabor@gmail.com


[Package igraph version 0.7.0 Index]