-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
51 lines (38 loc) · 1.26 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
47
48
49
50
51
---
output: github_document
---
<!--
README.md is generated from README.Rmd. Please edit that file
rmarkdown::render(
"README.Rmd", output_format = rmarkdown::github_document(html_preview = FALSE))
-->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "tools/README-"
)
```
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/twNlme)](http://cran.r-project.org/package=twNlme)
[![Travis-CI Build Status](https://travis-ci.org/bgctw/twNlme.svg?branch=master)](https://travis-ci.org/bgctw/twNlme)
## Overview
The `twNlme` package helps with estimating uncertainty of predictions
of nonlinear mixed effects models.
While the residual variance decreases with averaging over many
predictions, the uncertainty due to random effects does not
decrease in general.
## Installation
```{r, eval = FALSE}
# From CRAN (in future)
#install.packages("twNlme")
# First install dependencies
install.packages("nlme")
# Install from github
# install.packages("devtools")
devtools::install_github("bgctw/twNlme")
```
## Usage
See the
[Tree biomass vignette](https://github.com/bgctw/twNlme/blob/master/vignettes/TreeBiomassExample.md) and other
[package vignettes](https://github.com/bgctw/twNlme/blob/master/vignettes/)
(*.md) for examples.