Skip to contents

CRAN DOI R-CMD-check Downloads

The inti package is part of the inkaverse project, which develops tools and workflows for plant science, experimental design, data analysis, and scientific writing. The package supports researchers during experiment planning and field data collection through Tarpuy, statistical analysis and visualization through Yupana, and the preparation of scientific outputs.

More information about the project is available at https://inkaverse.com/.

Installation

The stable version of inti can be installed from CRAN:

To install the latest development version directly from GitHub, it is recommended to use pak:

if (!requireNamespace("pak", quietly = TRUE)) {
  install.packages("pak")
}

pak::pkg_install("flavjack/inti")

To install a specific version from CRAN (e.g., version 0.4.4):

if (!requireNamespace("pak", quietly = TRUE)) {
  install.packages("pak")
}

pak::pkg_install("inti@0.4.4")

After installation, load the package:

Shiny Applications

The inti package includes two Shiny applications that provide graphical interfaces for experimental design, data management, statistical analysis, and result visualization.

Installing Application Dependencies

The applications can be accessed directly from the RStudio Addins menu or launched from the R console.

Yupana is an interactive environment for statistical analysis and visualization of experimental data.

inti:::yupana_full()

Tarpuy is an interactive platform for experimental planning, field-book generation, treatment organization, and data management.

inti:::tarpuy_full()