Learn R Programming

XGR (version 1.1.4)

xBiproject: Function to obtain a projected graph from a bipartitle graph

Description

xBiproject is supposed to obtain a projected graph from a bipartitle graph.

Usage

xBiproject(g, verbose = TRUE)

Arguments

g

an object of class "igraph" (or "graphNEL") for a bipartitel graph with a 'type' node attribute

verbose

logical to indicate whether the messages will be displayed in the screen. By default, it sets to true for display

Value

It returns an igraph object.

See Also

xBiproject

Examples

Run this code
# NOT RUN {
# 1) generate a random bipartite graph
set.seed(123)
g <- sample_bipartite(100, 50, p=0.05)
V(g)$name <- V(g)

# }
# NOT RUN {
# 2) obtain its projected graph
ig <- xBiproject(g)

# 3) estimate pairwise affiinity between nodes
mat <- xRWkernel(ig)
# }

Run the code above in your browser using DataLab