respR
is a package for R
that provides a
structural, reproducible workflow for the processing and analysis of
respirometry data. While the focus of the package is on aquatic
respirometry, respR
is largely unitless and so can process,
explore, and determine rates from any respirometry data, and indeed
linear relationships in any time-series data.
Use respR
to:
A highlight of the package is the auto_rate()
function.
This uses machine learning (kernel density estimation) to
automatically identify linear regions of data, that is regions
where oxygen uptake or production rates are stable and consistent. This
allows metabolic rates to be extracted in an objective manner. See
vignette("auto_rate")
for more details.
respR
is now available on CRAN,
and can be installed via the ‘Packages’ tab in RStudio or by running
this command:
install.packages("respR")
Visit the respR
website
to get started. The site has a range of vignettes detailing the
functionality, plus example workflows, documentation, and more.
We are also happy to help directly. If you have problems using the package or getting started with your analysis, get in touch with a sample of your data and we will help get you started.
The package has also been peer reviewed and
published in Methods in Ecology and Evolution.
Please cite this publication if you use respR
in your
published work.
respR
has been used to examine metabolic rates and
photosynthesis in corals, plankton, micro- and macro-algae, fish,
crustaceans, echinoderms, cephalopods, bivalves and more, in both lab
and field studies. Check the respR
in use page to see a list of published studies which have
used the package to analyse their data.
respR
has a Twitter
account. Follow for latest news and regular updates from
the world of respirometry!
There is also Mastodon account. Like many we have just started with this, so stay tuned to see how things develop!
See here for even more ways of providing feedback and getting in touch if you are having issues.
If you would like to help support the package development or just buy us a beer in thanks go here: Support Development
For a quick evaluation of the package, try out the following code:
library(respR) # load the package
# 1. Check data for errors, selecting cols 1 and 15:
<- inspect(urchins.rd, time = 1, oxygen = 15)
urch # 2. Automatically determine most linear regions:
<- auto_rate(urch)
rate # 3. Convert
<- convert_rate(rate,
out oxy.unit = "mg/L",
time.unit = "min",
output.unit = "mg/h/kg",
volume = 0.6,
mass = 0.4)
print(out)
## Alternatively, use pipes:
%>% # using the urchins dataset,
urchins.rd select(1, 15) %>% # select columns 1 and 15
inspect() %>% # inspect the data, then
auto_rate() %>% # automatically determine most linear segment
print() %>% # a quick preview
convert_rate("mg/L", "min", "mg/h/kg", 0.6, 0.4) # convert to units