forked from SwampThingPaul/NADA2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.rmd
46 lines (31 loc) · 1.7 KB
/
README.rmd
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
---
output: github_document
---
```{r setup, include=FALSE,echo=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# NADA2 <img src="man/figures/logo.png" align="right" alt="" width="120" />
## Table of Contents
* [Introduction](#intro)
* [Citing package](#cite)
* [Installation](#install)
## Introduction
For many environmental professionals, the way to deal with “nondetects” is less than obvious. Values below detection or reporting limits result from measuring trace amounts of a variety of organic and inorganic chemicals. This package includes methods for plotting, computing summary statistics, hypothesis tests, and regression models for data with one or more detection limits. Most are adaptations of or direct use of existing methods found in survival analysis (such as in the survival package) and in cancer research (such as in the interval package).
This package is a series of new procedures or improvements on current ones in the NADA package developed through a series of webinars, online courses, and updates to Helsel (2004) and Helsel (2011).
* Helsel, D.R., 2004. Nondetects and Data Analysis: Statistics for Censored Environmental Data, 1st edition. ed. Wiley-Interscience, Hoboken, N.J.
* Helsel, D.R., 2011. Statistics for Censored Environmental Data Using Minitab© and R, 2nd edition. ed. Wiley-Interscience, Hoboken, N.J.
## Citing package
```{r}
citation('NADA2')
```
## Installation <a name="install"></a>
Development version can be installed from this repo using:
```{r,eval=F}
install.packages("devtools");# if you do not have it installed on your PC
devtools::install_github("SwampThingPaul/NADA2")
```
To install the deployed version from CRAN use:
```{r,eval=F}
install.packages("NADA2")
```
***