Learn R Programming

smbdata (version 0.2.0)

potatorow: Potato yields with row data

Description

This dataset presents individual row yields from a field experiment designed as a randomized complete block design to evaluate the effects of four different fungicides (F1, F2, F3, and F4) compared with untreated control plots on potato yield. The trial was arranged as four blocks, each containing five plots, for a total of 20 units. For this analysis, yield measurements are broken down to the level of individual rows within each plot. The dataset includes classifying factors for Block, Plot, and Row, enabling detailed investigation of within-plot and within-block variation, as well as the overall impact of fungicide treatments on potato yield.

Usage

potatorow

Arguments

Format

A data frame with 6 variables: ID, Block, Plot, Row, Fungicide, RowYield.

ID

Factor. Unique identifier for each row yield observation.

Block

Factor. Block number in the randomized complete block design with four levels.

Plot

Factor. Plot number within each block (1–5).

Row

Factor. Row number within each plot, corresponding to individual row yields.

Fungicide

Factor. Fungicide treatment applied to the plot ("Control", "F1", "F2", "F3", or "F4").

RowYield

Integer. Potato yield measured for the individual row (units as recorded, e.g., grams or kilograms).

Examples

Run this code
summary(aov(RowYield ~ Fungicide + Error(Block/Plot/Row), data = potatorow))

Run the code above in your browser using DataLab