-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
71 lines (50 loc) · 2.07 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
fig.align = 'center'
, collapse = TRUE
, comment = "#>"
)
```
# inti <img src="man/figures/logo.png" align="right" width="200" />
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/inti)](https://CRAN.R-project.org/package=inti)
[![DOI](https://zenodo.org/badge/82401374.svg)](https://zenodo.org/badge/latestdoi/82401374)
[![R-CMD-check](https://github.com/Flavjack/inti/workflows/R-CMD-check/badge.svg)](https://github.com/Flavjack/inti/actions)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/inti?color=brightgreen)](https://r-pkg.org/pkg/inti)
<!-- badges: end -->
The 'inti' package is part of the 'inkaverse' project for developing different procedures and tools used in plant science and experimental designs. The mean aim of the package is to support researchers during the planning of experiments and data collection 'tarpuy()', data analysis and graphics 'yupana()', and technical writing. Learn more about the 'inkaverse' project at <https://inkaverse.com/>.
## Installation
To install the stable version from [CRAN](https://cran.r-project.org/package=inti):
```{r eval=F}
install.packages("inti")
```
To install the latest development version directly from [GitHub](https://github.com/flavjack/inti):
```{r eval=F}
if (!require("remotes"))
install.packages("remotes")
remotes::install_github("flavjack/inti")
```
If you need install an specific version:
```{r eval=F}
if (!require("remotes"))
install.packages("remotes")
remotes::install_version("inti", version = "0.4.4")
```
## Shiny apps
If is the first time running any of the apps consider install the app dependencies:
```{r eval=F}
inti::yupana(dependencies = TRUE)
```
After install the package and the app dependencies also you can access to the apps through the Addins list in Rstudio or running the following code:
### Yupana
```{r eval=F}
inti::yupana()
```
### Tarpuy
```{r eval=F}
inti::tarpuy()
```