-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME.Rmd
More file actions
executable file
·49 lines (34 loc) · 1.16 KB
/
README.Rmd
File metadata and controls
executable file
·49 lines (34 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
output:
md_document:
variant: markdown_github
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
#BASEmetab
Code accompanying Grace et al. (2015) Fast processing of diel oxygen curves: estimating stream metabolism with BASE (BAyesian Single-station Estimation). Limnology and Oceanography: Methods, 13, 103–114 http://onlinelibrary.wiley.com/doi/10.1002/lom3.10011/full
Currently the BASEmetab package contains just a single user function ````bayesmetab````, which performs the above analysis.
Run ````?bayesmetab```` for details.
#Installation
To install run the following code:
```
# install devtools package
install.packages(c("devtools"))
# install BASEmetab package
devtools::install_github("dgiling/BASEmetab")
# Remove the package zip after installation
unlink("BASEmetab.zip")
#load library
library(BASEmetab)
```
#Example
See the help file associated with ````bayesmetab````.
#Developer
Technical code prepared by Darren Giling <darren.giling@idiv.de>
Packaged by Nick Bond <n.bond@latrobe.edu.au>
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```