-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
executable file
·92 lines (59 loc) · 3.42 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
output: rmarkdown::github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "",
fig.path = "inst/extdata/"
)
```
## `BayesAMMI2`: Bayesian Estimation of the Additive Main Effects and Multiplicative Interaction Model
###### Version : [`r getNamespaceVersion("BayesAMMI2")`](https://myaseen208.com/BayesAMMI2/); Copyright (C) 2024: License: [GPL-3](https://www.r-project.org/Licenses/)
##### *Muhammad Yaseen^1,2^, Diego Jarquin^3^, Julian Garcia Abadillo Velasco^3^*
1. School of Mathematical & Statistical Sciences, Clemson University, Clemson, South Carolina, USA
2. Department of Mathematics & Statistics, University of Agriculture Faisalabad, Pakistan
3. Agronomy Department, University of Florida, Gainesville, FL, United States
***
[![minimal R version](https://img.shields.io/badge/R>%3D-3.5.0-6666ff.svg)](https://cran.r-project.org/)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version-last-release/BayesAMMI2)](https://cran.r-project.org/package=BayesAMMI2)
[![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/BayesAMMI2?color=green)](https://CRAN.R-project.org/package=BayesAMMI2)
<!-- [![packageversion](https://img.shields.io/badge/Package%20version-0.2.3.3-orange.svg)](https://github.com/myaseen208/BayesAMMI2) -->
```{r, results='asis', echo=FALSE, eval = FALSE}
dver <- ifelse(test = gsub("(.\\.)(\\d+)(\\..)", "", getNamespaceVersion("BayesAMMI2")) != "",
yes = getNamespaceVersion("BayesAMMI2"),
no = gsub("Version:\\s*", "", readLines(paste0("https://raw.githubusercontent.com/", "myaseen208/BayesAMMI2", "/master/DESCRIPTION"))[grep("Version:", readLines(paste0("https://raw.githubusercontent.com/", "myaseen208/BayesAMMI2", "/master/DESCRIPTION")))]))
cat(paste("[![develVersion](https://img.shields.io/badge/devel%20version-", dver, "-orange.svg)](https://github.com/myaseen208/BayesAMMI2)", sep = ""))
```
<!-- [![GitHub Download Count](https://github-basic-badges.herokuapp.com/downloads/myaseen208/BayesAMMI2/total.svg)] -->
[![Project Status: WIP](https://www.repostatus.org/badges/latest/inactive.svg)](https://www.repostatus.org/#inactive)
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![Last-changedate](https://img.shields.io/badge/last%20change-`r gsub('-', '--', Sys.Date())`-yellowgreen.svg)](https://github.com/myaseen208/BayesAMMI2)
***
## Description
`r gsub("(<doi:)(.+)(>)", "[doi:\\2](https://doi.org/\\2)", gsub("\\n", " ", packageDescription("BayesAMMI2", fields = "Description")))`
## Installation
The package can be installed from CRAN as follows:
```{r, eval=FALSE}
install.packages("BayesAMMI2", dependencies = TRUE)
```
The development version can be installed from github as follows:
```{r, eval=FALSE}
if (!require("remotes")) install.packages("remotes")
remotes::install_github("myaseen208/BayesAMMI2")
```
## What's new
To know whats new in this version type:
```{r, eval=FALSE}
news(package = "BayesAMMI2")
```
## Links
[CRAN page](https://cran.r-project.org/package=BayesAMMI2)
[Github page](https://github.com/myaseen208/BayesAMMI2)
[Documentation website](https://myaseen208.com/BayesAMMI2/)
## Citing `BayesAMMI2`
To cite the methods in the package use:
```{r, comment = ""}
citation("BayesAMMI2")
```