https://github.com/biometryhub/biometryassist
A package to aid in teaching experimental design and analysis through easy access and documentation of helper functions. Renaming of previous BiometryTraining package.
https://github.com/biometryhub/biometryassist
biometry experimental-design package r rstats rstats-package teaching
Last synced: 8 months ago
JSON representation
A package to aid in teaching experimental design and analysis through easy access and documentation of helper functions. Renaming of previous BiometryTraining package.
- Host: GitHub
- URL: https://github.com/biometryhub/biometryassist
- Owner: biometryhub
- License: other
- Created: 2022-01-25T03:15:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-10-03T03:32:54.000Z (8 months ago)
- Last Synced: 2025-10-22T03:53:50.705Z (8 months ago)
- Topics: biometry, experimental-design, package, r, rstats, rstats-package, teaching
- Language: R
- Homepage: https://biometryhub.github.io/biometryassist
- Size: 21.4 MB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 23
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# biometryassist
```{r, echo = FALSE}
description <- read.dcf('DESCRIPTION')
version <- as.vector(description[, 'Version'])
min.r <- substr(description[,"Depends"], 7, 11)
```
[](https://www.repostatus.org/#active)
[](https://app.codecov.io/gh/biometryhub/biometryassist?branch=main)
[](https://github.com/biometryhub/biometryassist/actions)
[](https://cran.r-project.org/)
[`-orange.svg?style=flat-square)](https://github.com/biometryhub/biometryassist/commits/main)
[](https://choosealicense.com/licenses/mit/)
[](https://cran.r-project.org/package=biometryassist)

The goal of biometryassist is to provide functions to aid in the Design and Analysis of Agronomic-style experiments through easy access to documentation and helper functions, especially while teaching these concepts.
*This package is a renamed version of BiometryTraining which is no longer maintained, but can still be found at https://biometryhub.github.io/BiometryTraining/*
----
## Installation
As of version 1.0.0 the biometryassist package is now [on CRAN](https://cran.r-project.org/package=biometryassist) 🙌
That means that installation is as easy as running:
```{r installing_cran, eval=FALSE}
install.packages("biometryassist")
```
### Development version
âš **Warning**: The development version is unstable and liable to change more often than the CRAN version. It may have bugs fixed, but there may be other currently unknown bugs introduced. âš
Use the following code to install the latest development version of this package.
```{r eval=F}
if(!require("remotes")) install.packages("remotes")
remotes::install_github("biometryhub/biometryassist@dev")
```
## Using the package
Load the package and start using it with:
```{r eval=F}
library(biometryassist)
```
If you find this package useful, please cite it! Type `citation("biometryassist")` on the R console to find out how.
## Troubleshooting Installation
- If you receive an error that the package could not install because `rlang` or another package could not be upgraded, the easiest way to deal with this is to uninstall the package(s) that could not be updated (`remove.packages("rlang")`). Then restart R, re-install with `install.packages("rlang")` and then try installing `biometryassist` again.