Learn R Programming

gremes (version 0.1.1)

EKS_part: Object of class EKS_part

Description

It creates an object with two slots: $graph containing the graph and $depParams containing the edge weights which are initialized with zero values. It is intended to be used for estimation of edge weights of models on trees. Consult Vignettes "Code - Note 3" and "Estimation - Note 3".

Usage

EKS_part(g)

Value

Object of class EKS_part with two slots: $graph containing the graph and $depParams containing the edge weights corresponding to the dependence parameters.

Arguments

g

must be an igraph object

Examples

Run this code
g<- graph(c("a","b", "b","c", "b", "d"), directed=FALSE)
ekspart<- EKS_part(g)

Run the code above in your browser using DataLab