README.md

Agroft: Agricultural Field Trial Statistics Package

An analysis interface for the Agriculture Innovation Project

Installation

The Agroft application is a R package and the development version is hosted on Github. The easiest way to install it is via install.packages, specifying this repository in addition to the normal CRAN repository.

You will also need Rtools installed if you are using Microsoft Windows. Download the Rtools\<XY>.exe file that corresponds to your verision of R from this website.

After installing Rtools, re-open R and run:

> install.packages('agroft', 
                   repos = c('@CRAN@', 'https://ucd-ipo.github.io/agroft'), 
                   type='source')

Older versions of R may not be able to download data from the Agroft repository. If you get the error:

Warning in install.packages :
  package 'agroft' is not available (for R version x.y.z)

You will need to install Agroft using the devtools package.

Install devtools:

> install.packages('devtools')

Now install the development version of the app with:

> devtools::install_github('ucd-ipo/agroft')

This step only has to be done once.

Usage

Open R and load the package with the library function:

> library(agroft)

This will load the package and open a new Agroft session in your default web browser. Closing the browser window or tab in which Agroft is running will end your Agroft session (data and progress will not be saved between Agroft sessions). To start another new Agroft session, use the launch function (i.e. type launch() at the R command prompt (>) and press enter).

> launch()

A new session will start in your default web browser.

You can also use the setup function to confugre R so that it will launch an Agroft session when R starts. This option is designed for users who only plan on using R to run Agroft, and not for other purposes.

> setup()


ucd-ipo/agroft documentation built on May 3, 2019, 2:20 p.m.