View source: R/plot_distance_graph.R
plot_distance_graph | R Documentation |
Plot pair-wise distances between individuals as line segments.
plot_distance_graph(D, idx = 1:dim(as.matrix((D)))[1])
D |
distance matrix, should be of class 'dist' or compatible class |
idx |
an integer sequence defining which individuals should be compared |
By default all individuals are plotting on the same axis. When there are more than about 10 individuals, the plot can become quite messy. See examples below for ideas.
No value is returned.
Dylan E Beaudette
https://casoilresource.lawr.ucdavis.edu/
sp2
, profile_compare
data(sp2)
depths(sp2) <- id ~ top + bottom
d <- NCSP(
sp2,
vars = c('prop', 'field_ph', 'hue', 'value'),
maxDepth = 100,
k = 0.01
)
par(mfcol=c(3,1), mar=c(2.5,4.5,1,1))
plot_distance_graph(d, idx=1:6)
plot_distance_graph(d, idx=7:12)
plot_distance_graph(d, idx=12:18)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.