Learn R Programming

ProNet (version 1.0.0)

construct_local: Local network construction

Description

Construction a network from experimental data.

Usage

construct_local(input, node.attribute)

Arguments

input
A data frame containing the experimental data.
node.attribute
A data frame containing node attributes.

Value

A network in igraph format.

See Also

construction, construct_nlocal.

Examples

Run this code
local<-data.frame(1:5,2:6)
attribute<-data.frame(c(0.2,0.3,0.2,0.5,0.1))
net<-construct_local(input=local,node.attribute=attribute)

Run the code above in your browser using DataLab