-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
42 lines (28 loc) · 2.09 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# ctfs: An R package version of the "[CTFS R Package](http://ctfs.si.edu/Public/CTFSRPackage/)" <img src="https://i.imgur.com/39pvr4n.png" align="right" height=44 />
### This package is deprecated. Instead use https://forestgeo.github.io/fgeo/
[](https://travis-ci.org/forestgeo/ctfs)
[](https://coveralls.io/r/forestgeo/ctfs?branch=master)
[](https://cran.r-project.org/package=ctfs)
### Installation
```
# install.packages("devtools")
devtools::install_github("forestgeo/ctfs")
```
### Differences between ctfs and the CTFS R package
* Function names: replaced "." by "_" in the names of some functions to overcome conflicts with R's S3 system (http://adv-r.had.co.nz/OO-essentials.html#s3).
* Documentation: edited some documentation to make it clearer, or added documentation that was missing (e.g. some arguments where documented in some but not all functions that used those arguments).
* __ctfs__ is an R package __sensu stricto__, but not the CTFS R Package.
* To install __ctfs__ see the section _Installation_ and to learn how to use it see help files as you would normally do for any R package, i.e. with `help(FUNCTION)` or `?FUNCTION`. Alternatively, go to https://forestgeo.github.io/ctfs/.
* To install the CTFS R Package and to learn how to use it, go to http://ctfs.si.edu/Public/CTFSRPackage/.
* Added some functions, to facilitate development. E.g. to identify undocumented arguments, or to build a website automatically. These functions are in `R/ft-*.R`, where `*` is anything. These functions depend on some packages additional to those on which the original CTFS R Package depend (such packages are now declared in `DESCRIPTIONS`, under `Imports:` or `Suggests:`).