plotResidency {actel} | R Documentation |
Plot residency for a single tag
Description
The output of plotResidency is a ggplot object, which means you can then use it in combination with other ggplot functions, or even together with other packages such as patchwork.
Usage
plotResidency(input, tag, title, xlab, ylab, col)
Arguments
input |
The results of an actel analysis (either explore, migration or residency). |
tag |
The transmitter to be plotted. |
title |
An optional title for the plot. If left empty, a default title will be added. |
xlab , ylab |
Optional axis names for the plot. If left empty, default axis names will be added. |
col |
An optional colour scheme for the detections. If left empty, default colours will be added. |
Value
A ggplot object.
Examples
# For this example, I have modified the example.results that come with actel,
# so they resemble a residency output
plotResidency(example.residency.results, 'R64K-4451')
# Because plotResidency returns a ggplot object, you can store
# it and edit it manually, e.g.:
library(ggplot2)
p <- plotResidency(example.residency.results, 'R64K-4451')
p <- p + xlab("changed the x axis label a posteriori")
p
# You can also save the plot using ggsave!
[Package actel version 1.3.0 Index]