|
1 | 1 |
|
2 | | -<!-- README.md is generated from README.Rmd. Please edit that file --> |
3 | 2 |
|
4 | | -# inti <img src="man/figures/logo.png" align="right" width="200" /> |
| 3 | +# inti |
5 | 4 |
|
6 | | -<!-- badges: start --> |
7 | | - |
8 | | -[](https://CRAN.R-project.org/package=inti) |
| 5 | +[](https://cran.r-project.org/package=inti) |
10 | 6 | [](https://zenodo.org/badge/latestdoi/82401374) |
11 | 7 | [](https://github.com/Flavjack/inti/actions) |
12 | | -[](https://r-pkg.org/pkg/inti) |
14 | | -<!-- badges: end --> |
| 8 | +[](https://r-pkg.org/pkg/inti) |
| 9 | + |
| 10 | +The **inti** package is part of the **inkaverse** project, which |
| 11 | +develops tools and workflows for plant science, experimental design, |
| 12 | +data analysis, and scientific writing. The package supports researchers |
| 13 | +during experiment planning and field data collection through **Tarpuy**, |
| 14 | +statistical analysis and visualization through **Yupana**, and the |
| 15 | +preparation of scientific outputs. |
15 | 16 |
|
16 | | -The ‘inti’ package is part of the ‘inkaverse’ project for developing |
17 | | -different procedures and tools used in plant science and experimental |
18 | | -designs. The mean aim of the package is to support researchers during |
19 | | -the planning of experiments and data collection ‘tarpuy()’, data |
20 | | -analysis and graphics ‘yupana()’, and technical writing. Learn more |
21 | | -about the ‘inkaverse’ project at <https://inkaverse.com/>. |
| 17 | +More information about the project is available at |
| 18 | +<https://inkaverse.com/>. |
22 | 19 |
|
23 | 20 | ## Installation |
24 | 21 |
|
25 | | -To install the stable version from |
26 | | -[CRAN](https://cran.r-project.org/package=inti): |
| 22 | +The stable version of **inti** can be installed from CRAN: |
27 | 23 |
|
28 | 24 | ``` r |
29 | 25 | install.packages("inti") |
30 | 26 | ``` |
31 | 27 |
|
32 | | -To install the latest development version directly from |
33 | | -[GitHub](https://github.com/flavjack/inti): |
| 28 | +To install the latest development version directly from GitHub, it is |
| 29 | +recommended to use **pak**: |
| 30 | + |
| 31 | +``` r |
| 32 | +if (!requireNamespace("pak", quietly = TRUE)) { |
| 33 | + install.packages("pak") |
| 34 | +} |
| 35 | + |
| 36 | +pak::pkg_install("flavjack/inti") |
| 37 | +``` |
| 38 | + |
| 39 | +To install a specific version from CRAN (e.g., version 0.4.4): |
34 | 40 |
|
35 | 41 | ``` r |
36 | | -if (!require("remotes")) |
37 | | - install.packages("remotes") |
38 | | -remotes::install_github("flavjack/inti") |
| 42 | +if (!requireNamespace("pak", quietly = TRUE)) { |
| 43 | + install.packages("pak") |
| 44 | +} |
| 45 | + |
| 46 | +pak::pkg_install("inti@0.4.4") |
39 | 47 | ``` |
40 | 48 |
|
41 | | -If you need install an specific version: |
| 49 | +After installation, load the package: |
42 | 50 |
|
43 | 51 | ``` r |
44 | | -if (!require("remotes")) |
45 | | - install.packages("remotes") |
46 | | -remotes::install_version("inti", version = "0.4.4") |
| 52 | +library(inti) |
47 | 53 | ``` |
48 | 54 |
|
49 | | -## Shiny apps |
| 55 | +## Shiny Applications |
| 56 | + |
| 57 | +The **inti** package includes two Shiny applications that provide |
| 58 | +graphical interfaces for experimental design, data management, |
| 59 | +statistical analysis, and result visualization. |
50 | 60 |
|
51 | | -If is the first time running any of the apps consider install the app |
| 61 | +### Installing Application Dependencies |
| 62 | + |
| 63 | +The first time you run any of the applications, install the required |
52 | 64 | dependencies: |
53 | 65 |
|
54 | 66 | ``` r |
55 | 67 | inti::yupana(dependencies = TRUE) |
56 | 68 | ``` |
57 | 69 |
|
58 | | -After install the package and the app dependencies also you can access |
59 | | -to the apps through the Addins list in Rstudio or running the following |
60 | | -code: |
| 70 | +This step only needs to be performed once. |
| 71 | + |
| 72 | +### Launching the Applications |
| 73 | + |
| 74 | +The applications can be accessed directly from the **RStudio Addins** |
| 75 | +menu or launched from the R console. |
61 | 76 |
|
62 | | -### Yupana |
| 77 | +**Yupana** is an interactive environment for statistical analysis and |
| 78 | +visualization of experimental data. |
63 | 79 |
|
64 | 80 | ``` r |
65 | 81 | inti::yupana() |
66 | 82 | ``` |
67 | 83 |
|
68 | | -### Tarpuy |
| 84 | +**Tarpuy** is an interactive platform for experimental planning, |
| 85 | +field-book generation, treatment organization, and data management. |
69 | 86 |
|
70 | 87 | ``` r |
71 | 88 | inti::tarpuy() |
|
0 commit comments