The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
R package for Estuarine BAyesian Single-station Estimation (EBASE) method for ecosystem metabolism.
Install the package as follows:
# Install EBASE in R:
install.packages('EBASE', repos = c('https://fawda123.r-universe.dev', 'https://cloud.r-project.org'))
The JAGS software must also be installed to use this package. Follow the instructions in the link to download and install the version appropriate for your operating system.
library(dplyr)
library(lubridate)
library(doParallel)
# get four days of data
<- exdat %>%
dat filter(month(DateTimeStamp) == 6 & day(DateTimeStamp) %in% 1:4)
##
# run ebase with defaults
# setup parallel backend
<- makeCluster(2)
cl registerDoParallel(cl)
<- ebase(dat, interval = 900, Z = 1.85)
res
stopCluster(cl)
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.