forestmangr

R package for forest mensuration and management

https://github.com/sollano/forestmangr

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (20.6%) to scientific vocabulary
Last synced: 11 months ago · JSON representation

Repository

R package for forest mensuration and management

Basic Info
  • Host: GitHub
  • Owner: sollano
  • License: other
  • Language: R
  • Default Branch: master
  • Size: 1.09 MB
Statistics
  • Stars: 17
  • Watchers: 1
  • Forks: 8
  • Open Issues: 2
  • Releases: 4
Created almost 8 years ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog License

README.Rmd

---
output: github_document
---



```{r, echo = FALSE, message=FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)
library(forestmangr)
library(dplyr)
```

[![Travis-CI Build Status](https://travis-ci.org/sollano/forestmangr.svg?branch=master)](https://travis-ci.org/sollano/forestmangr)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/forestmangr)](https://cran.r-project.org/package=forestmangr)
[![Coverage Status](https://codecov.io/gh/sollano/forestmangr/branch/master/graph/badge.svg)](https://codecov.io/gh/sollano/forestmangr?branch=master)
[![](https://cranlogs.r-pkg.org/badges/grand-total/forestmangr)](https://cran.r-project.org/package=forestmangr)
[![](https://cranlogs.r-pkg.org/badges/forestmangr)](https://cran.r-project.org/package=forestmangr)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
 PayPal donate button 
 
# forestmangr

Processing forest inventory data with methods such as simple random sampling, stratified random sampling and systematic sampling. There are also functions for yield and growth predictions and model fitting, linear and non linear grouped data fitting, and statistical tests.

If you need any help, I’m available for consulting. If you find forestmangr useful, please consider supporting my efforts in developing this open-source R package for the forestry community!


## Installation To install the stable CRAN version, use: ```{r eval = FALSE} install.packages("forestmangr") ``` Or you can install forestmangr from github, for the latest dev version with: ```{r gh-installation, eval = FALSE} # install.packages("devtools") devtools::install_github("sollano/forestmangr") ``` ## Example ```{r} library(forestmangr) library(dplyr) data("exfm16") head(exfm16) ``` Now, we can fit a model for Site estimatation. With `nls_table`, we can fit a non-linear model, extract it's coefficients, and merge it with the original data in one line. Here we'll use Chapman & Richards model: ```{r} age_i <- 64 exfm16_fit <- exfm16 %>% nls_table(DH ~ b0 * (1-exp(-b1* age))^b2, mod_start = c( b0=23, b1=0.03, b2 = 1.3), output="merge") %>% mutate(site = DH *( ( (1- exp( -b1/age ))^b2 ) / (( 1 - exp(-b1/age_i))^b2 ))) %>% select(-b0,-b1,-b2) head(exfm16_fit) ``` Now, to fit Clutter's model, we can use the `fit_clutter` function, indicating the DH, B, V, site and Plot variable names: ```{r} coefs_clutter <- fit_clutter(exfm16_fit, "age", "DH", "B", "V", "site", "plot") coefs_clutter ``` Now, say we wanted to do a Simple Random Sampling Forest Inventory, with 20% as an accepted error. First, let's load the package and some data: ```{r} library(forestmangr) data("exfm2") data("exfm3") data("exfm4") head(exfm3,10) ``` First we should try a pilot inventory, to see if the number of plots sampled is enough for reaching the desired error: ```{r} sprs(exfm3, "VWB", "PLOT_AREA", "TOTAL_AREA", error = 20, pop = "fin") ``` We can see that we have 10 plots, but 15 more are needed if we want a minimum of 20% error. The exfm4 data has new samples, that we now can use to run a definitive inventory: ```{r} sprs(exfm4, "VWB", "PLOT_AREA", "TOTAL_AREA", error = 20, pop = "fin") ``` The desired error was met. The exfm2 data has a strata variable. Say we wanted to run a SRS inventory for every stand. We can do this with the .groups argument: ```{r} head(exfm2,10) sprs(exfm2, "VWB", "PLOT_AREA", "STRATA_AREA",.groups="STRATA", error = 20, pop = "fin") ``` We can also run a stratified random sampling inventory with this data: ```{r} strs(exfm2, "VWB", "PLOT_AREA", "STRATA_AREA", "STRATA", error = 20, pop = "fin") ``` ## Citation To cite this package in publications, use: ABNT: BRAGA S. R.; OLIVEIRA, M. L. R.; GORGENS, E. B. forestmangr: Forest Mensuration and Management. R package version 0.9.2, 2020. Disponível em: APA: Sollano Rabelo Braga, Marcio Leles Romarco de Oliveira and Eric Bastos Gorgens (2020). forestmangr: Forest Mensuration and Management. R package version 0.9.2. https://CRAN.R-project.org/package=forestmangr ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details ## Acknowledgments * This project was developed on the Forest Management Lab, DEF, UFVJM, Diamantina/Minas Gerais - Brazil. * This project came to be as a mean to make the life of a forestry engeneer a little easier and pratical. We'd like to thank everyone at UFVJM that has in anyway helped this project grow. * We'd like to thank UFVJM, FAPEMIG, CNPq e CAPES for the support.

Owner

  • Name: Sollano Rabelo Braga
  • Login: sollano
  • Kind: user
  • Location: Três Marias, Minas Gerais - Brasil

Forest Engeneer

GitHub Events

Total
  • Watch event: 1
  • Push event: 4
  • Fork event: 1
Last Year
  • Watch event: 1
  • Push event: 4
  • Fork event: 1

Committers

Last synced: 11 months ago

All Time
  • Total Commits: 211
  • Total Committers: 1
  • Avg Commits per committer: 211.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 8
  • Committers: 1
  • Avg Commits per committer: 8.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Sollano s****b@g****m 211

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 2
  • Total pull requests: 3
  • Average time to close issues: N/A
  • Average time to close pull requests: about 1 hour
  • Total issue authors: 2
  • Total pull request authors: 2
  • Average comments per issue: 3.0
  • Average comments per pull request: 0.67
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • m1mels73 (1)
  • bharaticg (1)
Pull Request Authors
  • sollano (2)
  • hadley (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cran 708 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 9
  • Total maintainers: 1
cran.r-project.org: forestmangr

Forest Mensuration and Management

  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 708 Last month
Rankings
Forks count: 8.0%
Downloads: 10.6%
Stargazers count: 14.2%
Average: 17.0%
Dependent repos count: 24.3%
Dependent packages count: 27.9%
Maintainers (1)
Last synced: 11 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.5 depends
  • FinCal * imports
  • broom * imports
  • car * imports
  • dplyr >= 0.7.0 imports
  • ggdendro * imports
  • ggplot2 >= 2.0 imports
  • ggpmisc * imports
  • ggthemes * imports
  • gridExtra * imports
  • magrittr * imports
  • methods * imports
  • miniUI * imports
  • minpack.lm * imports
  • plyr * imports
  • purrr * imports
  • rlang * imports
  • scales * imports
  • shiny * imports
  • stats * imports
  • systemfit * imports
  • tibble >= 3.0.0 imports
  • tidyr * imports
  • utils * imports
  • formattable * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • tidyselect * suggests