Description Usage Arguments Value Author(s) See Also Examples
View source: R/plotEventCorrs.R
This function plots the correlation with baseline against sampling interval for each group
1 | plotEventCorrs(event.corrs, sep.plots = FALSE, ...)
|
event.corrs |
a matrix of correlations resulting from the |
sep.plots |
logical, whether to place each plot in a separate window |
... |
additional arguments to pass to the |
This function produces plots.
A. Marcia Barbosa
plot
, binary.comparison
, sequential.corr
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | data(roadkills)
submats <- sequential.submatrix(dataset = roadkills,
sampl.columns = 4:ncol(roadkills), sampl.intervals = 1:3,
group.column = "taxon", include.all.together = TRUE,
remove.zeros = TRUE, keep.nonsampl.columns = TRUE,
n.subsampl.columns = 80)
names(submats)
hsl <- sequential.hotspots(dataset = roadkills, submats = submats,
region.column = "segment", first.subsampl.col = 4, confidence = 0.95)
hsn <- hotspot.numbers(hotspots.list = hsl, sampl.intervals = 1:3,
groups = as.character(unique(roadkills$taxon)), include.all.together = TRUE,
min.total.events = 0, min.hotspot.threshold = 2)
seqcorr <- sequential.corr(hotspots.list = hsl,
hotspots.thresholds = hsn$HS.threshold, comp.method = "Phi",
baseline.interval = 1, messages = "TRUE")
plotEventCorrs(event.corrs = seqcorr, sep.plots = FALSE, ylim = c(0, 1),
pch = 20)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.