perutimber
Catalogue Of The Timber Forest Species Of The Amazon And The Peruvian Yunga
Science Score: 13.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
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.3%) to scientific vocabulary
Last synced: 9 months ago
·
JSON representation
Repository
Catalogue Of The Timber Forest Species Of The Amazon And The Peruvian Yunga
Basic Info
- Host: GitHub
- Owner: PaulESantos
- License: other
- Language: R
- Default Branch: main
- Homepage: https://paulesantos.github.io/perutimber/
- Size: 11 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created about 3 years ago
· Last pushed over 1 year ago
Metadata Files
Readme
License
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# perutimber
##
[](https://lifecycle.r-lib.org/articles/stages.html)
[](https://CRAN.R-project.org/package=perutimber)
[](https://github.com/PaulESantos/perutimber/actions/workflows/R-CMD-check.yaml)
[](https://cran.r-project.org/package=perutimber)
[](https://cran.r-project.org/package=perutimber)
The R package, `perutimber`, provides easy access to taxonomic information for over 1,300 vascular plant species found in the **"Catalogue of the timber forest species of the Amazon and the Peruvian Yunga"**. This package is based on the authoritative publication by [Vásquez Martínez and Rojas Gonzáles (2022) titled "Catálogo de las especies forestales maderables de la Amazonía y la Yunga Peruana" in Revista Forestal del Perú 37(3, Número Especial): 5-138](https://revistas.lamolina.edu.pe/index.php/rfp/article/view/1956). With `perutimber`, researchers and enthusiasts alike can efficiently explore and analyze the timber plant species.
## Installation
You can install the `perutimber` package from CRAN using:
```r
install.packages("perutimber")
# or
pak::pak("perutimber")
```
Also you can install the `perutimber` package from GitHub using the following command:
``` r
pak::pak("PaulESantos/perutimber")
```
## Basic usage
- Check if species name it listed in the data base:
```{r sps_search}
library(perutimber)
sps_list <- c("Pentaplaris davidsmithii",
"Quararibea wittiia",
"Sterculia tessmanni",
"Sterculia tessmannia",
"Brosimum alicastrum subsp. bolivarense",
"Brosimum alicastrum sub bolivarense",
"Poa annua")
```
- `perutimber::search_perutimber` function can be used over a vector of species names. You can pass a character vector containing multiple species names as an argument to the function, and it will check whether each of those species names is listed in the data. The function will return a character vector indicating whether each species name is present or not. Here's an example:
```{r vect_search}
perutimber::search_perutimber(splist = sps_list)
```
- `perutimber::search_perutimber` can be used with a data.frame or tibble. Here's an example of how to use it:
```{r tbl_search}
# base R
sps_df <- data.frame(sps_list)
sps_df
sps_df$review <- perutimber::search_perutimber(splist = sps_list)
sps_df
# tidyverse - tibble
sps_tbl <- tibble::tibble(sps_list)
sps_tbl |>
dplyr::mutate(review = perutimber::search_perutimber(splist = sps_list))
```
- `perutimber::get_perutimber_data()` allows access to information provided in the "Catalogue of the timber forest species of the Amazon and the Peruvian Yunga", to obtain information for a specific species, a species name vector must be provided as input. The function returns a data frame containing basic information for each species, such as its common and scientific names.
```{r get_data}
perutimber::get_perutimber_data(sps_list)
```
Owner
- Name: Paul Efren
- Login: PaulESantos
- Kind: user
- Location: Cusco - Peru
- Website: http://paulefrensa.rbind.io/
- Twitter: PaulEfrenSantos
- Repositories: 4
- Profile: https://github.com/PaulESantos
Plant ecology and R programming.
GitHub Events
Total
- Push event: 12
Last Year
- Push event: 12
Packages
- Total packages: 1
-
Total downloads:
- cran 152 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 1
- Total maintainers: 1
cran.r-project.org: perutimber
Catalogue of the Timber Forest Species of the Peruvian Amazon
- Homepage: https://github.com/PaulESantos/perutimber
- Documentation: http://cran.r-project.org/web/packages/perutimber/perutimber.pdf
- License: MIT + file LICENSE
-
Latest release: 0.1.0
published over 2 years ago
Rankings
Dependent packages count: 28.0%
Dependent repos count: 36.9%
Average: 50.3%
Downloads: 86.0%
Maintainers (1)
Last synced:
10 months ago