Skip to content
Snippets Groups Projects
Select Git revision
  • 038e31161a5be0f890f6b3e23d0eda0fd280d269
  • dataset/1 default protected
  • issue#16
  • issue#15
  • vignette-01
  • devel
6 results

potatoyield.Rd

Blame
  • user avatar
    Walmes Zeviani authored
    8e84a393
    History
    potatoyield.Rd 1.04 KiB
    % Generated by roxygen2 (4.1.1): do not edit by hand
    % Please edit documentation in R/legTools.R
    \docType{data}
    \name{potatoyield}
    \alias{potatoyield}
    \title{Potato variety competition experiment}
    \format{a \code{data.frame} with 32 records and 3 variables.}
    \source{
    Frederico, P. (2009). Curso de Estatística Experimental (15th
        ed.). Piracicaba, São Paulo: FEALQ. (page 76)
    }
    \usage{
    data(potatoyield)
    }
    \description{
    These data are from an experiment done by the engineer
        Oscar A. Garay at Balcare, Argentina. The experiment was done in
        a randomized complete block design with 4 blocks. Potato yield
        (t/ha) was recorded in each experimental unit.
    
    \itemize{
        \item \code{block} a categorical unordered factor with 4 levels.
        \item \code{variety} a categorical unordered factor with 8
        levels.
        \item \code{yield} potato yield (t/ha).
    }
    }
    \examples{
    require(lattice)
    data(potatoyield)
    
    plot(yield~variety, data=potatoyield,
         groups=block, type="o",
         ylab=expression(Yield~(t~ha^{-1})),
         xlab="Variety")
    }
    \keyword{datasets}