plot.vimes_data: Plot input data for vimes

Description Usage Arguments Author(s) Examples

View source: R/plot.vimes_data.R

Description

This function makes a series of histograms for data input to vimes.

Usage

1
2
3
## S3 method for class 'vimes_data'
plot(x, y = NULL, col = vimes_pal1(length(x)),
  n = length(x), which = 1:length(x), ...)

Arguments

x

a vimes_data object, as returned by vimes_data

y

left for compatibility with the generic 'plot'

col

colors to be used for the histograms

n

the number of histograms displayed per window

which

an integer vector indicating which distances to plot

...

further arguments passed on to hist

Author(s)

Thibaut Jombart thibautjombart@gmail.com

Examples

1
2
3
4
5
6
7
8
9
x1 <- rnorm(20)
x2 <- runif(20)
names(x1) <- sample(letters, 20)
names(x2) <- sample(letters, 20)
D1 <- dist(x1)
D2 <- dist(x2)
out <- vimes_data(AnkhDist=D1, MorpokDist=D2)
out
plot(out)

reconhub/vimes documentation built on May 27, 2019, 4:03 a.m.