-
Notifications
You must be signed in to change notification settings - Fork 8
/
README.Rmd
147 lines (93 loc) · 5.05 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
output: rmarkdown::github_document
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "",
fig.path = "inst/extdata/"
)
```
## `agricolae`: Statistical Procedures for Agricultural Research
```{r,echo = FALSE, message = FALSE}
devtools::load_all(".")
```
###### Version : [`r getNamespaceVersion("agricolae")`](https://myaseen208.github.io/agricolae/); License: [GPL-2|GPL-3](https://www.r-project.org/Licenses/)
##### *Felipe de Mendiburu^1^, Muhammad Yaseen^2^*
1. Professor of the Academic Department of Statistics and Informatics of the Faculty of Economics and Planning.National University Agraria La Molina-PERU.
2. Department of Mathematics and Statistics, University of Agriculture Faisalabad, Pakistan.
***
[![minimal R version](https://img.shields.io/badge/R>%3D-2.10.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/agricolae)](https://cran.r-project.org/package=agricolae)
[![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/agricolae?color=green)](https://CRAN.R-project.org/package=agricolae)
<!-- [![packageversion](https://img.shields.io/badge/Package%20version-0.2.3.3-orange.svg)](https://github.com/myaseen208/agricolae) -->
```{r, results='asis', echo=FALSE}
dver <- ifelse(test = gsub("(.\\.)(\\d+)(\\..)", "", getNamespaceVersion("agricolae")) != "",
yes = getNamespaceVersion("agricolae"),
no = gsub("Version:\\s*", "", readLines(paste0("https://raw.githubusercontent.com/", "myaseen208/agricolae", "/master/DESCRIPTION"))[grep("Version:", readLines(paste0("https://raw.githubusercontent.com/", "myaseen208/agricolae", "/master/DESCRIPTION")))]))
cat(paste("[![develVersion](https://img.shields.io/badge/devel%20version-", dver, "-orange.svg)](https://github.com/myaseen208/agricolae)", sep = ""))
```
<!-- [![GitHub Download Count](https://github-basic-badges.herokuapp.com/downloads/myaseen208/agricolae/total.svg)] -->
[![Project Status: WIP](http://www.repostatus.org/badges/latest/inactive.svg)](http://www.repostatus.org/#inactive)
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://www.tidyverse.org/lifecycle/#stable)
[![Last-changedate](https://img.shields.io/badge/last%20change-`r gsub('-', '--', Sys.Date())`-yellowgreen.svg)](https://github.com/myaseen208/agricolae)
[![Rdoc](http://www.rdocumentation.org/badges/version/agricolae)](http://www.rdocumentation.org/packages/agricolae)
***
## Description
`r gsub("(<doi:)(.+)(>)", "[doi:\\2](https://doi.org/\\2)", gsub("\\n", " ", packageDescription("agricolae", fields = "Description")))`
## Installation
The package can be installed from CRAN as follows:
```{r, eval=FALSE}
install.packages("agricolae", 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/agricolae")
```
## Detailed tutorial
* [Introduction to **agricolae**](https://myaseen208.github.io/agricolae/articles/Intro_agricolae.html)
* [The Not So Short Introduction to **agricolae**](https://myaseen208.github.io/agricolae/articles/Introduction.html)
* [Descriptive Statistics with **agricolae**](https://myaseen208.github.io/agricolae/articles/DescriptiveStats.html)
* [Experimental Designs with **agricolae**](https://myaseen208.github.io/agricolae/articles/ExperimentalDesign.html)
* [Multiple Comparisons with **agricolae**](https://myaseen208.github.io/agricolae/articles/MultipleComparisons.html)
* [Non-parametric Comparisons with **agricolae**](https://myaseen208.github.io/agricolae/articles/Non-parametricComparisons.html)
* [Graphics of the Multiple Comparisons with **agricolae**](https://myaseen208.github.io/agricolae/articles/GraphicsMultipleComparisons.html)
* [Stability Analysis with **agricolae**](https://myaseen208.github.io/agricolae/articles/StabilityAnalysis.html)
* [Special Functions in **agricolae**](https://myaseen208.github.io/agricolae/articles/SpecialFunctions.html)
## What's new
To know whats new in this version type:
```{r, eval=FALSE}
news(package = "agricolae")
```
## Links
[CRAN page](https://cran.r-project.org/package=agricolae)
[Github page](https://github.com/myaseen208/agricolae)
[Documentation website](https://myaseen208.github.io/agricolae/)
## Citing `agricolae`
To cite the R package `agricolae` in publications use:
```{r, eval = FALSE}
citation("agricolae")
```
```{r, echo = FALSE}
detach("package:agricolae", unload=TRUE)
suppressPackageStartupMessages(library(agricolae))
cit <- citation("agricolae")
# yr <- format(Sys.Date(), "%Y")
# cit[1]$year <- yr
# oc <- class(cit)
#
# cit <- unclass(cit)
# attr(cit[[1]],"textVersion") <- gsub("\\(\\)",
# paste("\\(", yr, "\\)", sep = ""),
# attr(cit[[1]],"textVersion"))
# class(cit) <- oc
cit