https://github.com/cran/multivariance
Revision 71cc2d66e2e947a4fd1ea1041711e731420b36ef authored by Björn Böttcher on 19 March 2019, 14:00:03 UTC, committed by cran-robot on 19 March 2019, 14:00:03 UTC
1 parent 2ffcc68
Raw File
Tip revision: 71cc2d66e2e947a4fd1ea1041711e731420b36ef authored by Björn Böttcher on 19 March 2019, 14:00:03 UTC
version 2.1.0
Tip revision: 71cc2d6
clean.graph.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/multivariance-functions.R
\name{clean.graph}
\alias{clean.graph}
\title{cleanup dependence structure graph}
\usage{
clean.graph(g)
}
\arguments{
\item{g}{graph, created by \code{\link{dependence.structure}}}
}
\value{
graph
}
\description{
Given a dependence structure graph: vertices representing the multivariances of only two vertices become an edge labeled with the label of the vertex.
}
\examples{

N = 200
y = coins(N,2)
x = cbind(y,y,y)
ds = dependence.structure(x)
plot(clean.graph(ds$graph))
}
back to top