cgraph: Complete graph

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Creates a complete graph for the given cloud of vertices.

Usage

1
cgraph(x, y = NULL, ...)

Arguments

x

X values, or a matrix with two columns containing X and Y values.

y

Y values. Can be left empty if x is a matrix.

...

Other arguments to be passed to segments.

Details

If y is not given, x is required to be a matrix containing both x and y values.

Value

Plots a complete graph between the given vertices.

Author(s)

Samuel Brown <s_d_j_brown@hotmail.com>

See Also

plot.ordinDNA.

Examples

1
2
3
4
5
6
7
8
x <- runif(15)
y <- runif(15)

graphics::plot(x, y)
cgraph(x, y)

M <- cbind(x, y)
cgraph(M[1:10,], col = "blue")

spider documentation built on May 2, 2019, 7:31 a.m.