Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tzerk/leadr
Sediment Deposition and Accumulation Rates Determined by 210Pb Isotope Methods
https://github.com/tzerk/leadr
isotope r sedimentation
Last synced: 18 days ago
JSON representation
Sediment Deposition and Accumulation Rates Determined by 210Pb Isotope Methods
- Host: GitHub
- URL: https://github.com/tzerk/leadr
- Owner: tzerk
- License: mit
- Created: 2018-07-27T10:11:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T13:03:36.000Z (over 2 years ago)
- Last Synced: 2024-11-08T10:54:22.260Z (2 months ago)
- Topics: isotope, r, sedimentation
- Language: R
- Size: 128 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)## Examples
library(leadR)
```[![Build status](https://ci.appveyor.com/api/projects/status/e99p76twnuyk82a7?svg=true)](https://ci.appveyor.com/project/tzerk/leadr)
[![Build Status](https://travis-ci.org/tzerk/leadR.svg?branch=master)](https://travis-ci.org/tzerk/leadR)> [Find a full documentation of the package on the project page](https://tzerk.github.io/leadR/)
## Overview
Sediment Deposition and Accumulation Rates Determined by 210Pb Isotope Methods.
## Installation
The ‘leadR’ package is not available on the official CRAN servers.
However, the latest development builds can directly be installed from GitHub. Simply run the following from an R console
```{r, eval = FALSE}
if(!require("devtools"))
install.packages("devtools")
devtools::install_github("tzerk/leadR")
```## Features
Example of the 'Constant Flux Constant Sedimentation Rate' (CF:CS) model ouput:
```{r model}
# Load example data (synthetic)
data(Pb)
str(Pb)# Apply the model
results <- calc_SedimentationRate(x = Pb,
reverse = TRUE,
fix_a0 = FALSE,
verbose = TRUE)
```## Note
This version is a development version and it comes without any guarentee!
## License
The leadR package is licensed under the MIT. See these files in the main directory for additional details:
* LICENSE - leadR package license (MIT)