Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nandp1 committed Jun 16, 2021
1 parent 032602c commit 1ed4178
Show file tree
Hide file tree
Showing 41 changed files with 2,302 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$
^_pkgdown\.yml$
^docs$
^pkgdown$
^doc$
^Meta$
^NEWS\.Rmd$
^CRAN-RELEASE$
^cran-comments\.md$
^data-raw$
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
inst/doc
gpbStat.Rproj
docs
doc
Meta
2 changes: 2 additions & 0 deletions CRAN-RELEASE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This package was submitted to CRAN on 2021-06-16.
Once it is accepted, delete this file and tag the release (commit 6a9df91).
35 changes: 35 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Package: gpbStat
Type: Package
Title: Comprehensive Statistical Analysis of Plant Breeding Experiments
Version: 0.3.2
Authors@R:
c(
person(
c("Nandan", "Patil")
, email = "tryanother609@gmail.com"
, role = c("cre", "aut")
, comment = c(ORCID = "0000-0003-0100-9931")
)
, person(
c("Lakshmi", "R.", "Gangavati")
, email = "lakshmurg8@gmail.com"
, role = c("aut", "ctb")
)
)
Maintainer: Nandan Patil <tryanother609@gmail.com>
Note: Department of Genetics and Plant Breeding, University of Agricultural Sciecnes, Dharwad.
Description: Performs statistical data analysis of various Plant Breeding experiments. Contains functions for Line by Tester analysis as per Arunachalam, V.(1974) <http://repository.ias.ac.in/89299/>.
License: GPL-2
Encoding: UTF-8
LazyData: true
Depends: R (>= 3.0)
Date: 2021-06-16
URL: https://github.com/nandp1/gpbStat/
BugReports: https://github.com/nandp1/gpbStat/issues
RoxygenNote: 7.1.1
Suggests:
testthat,
knitr,
rmarkdown,
reshape2
VignetteBuilder: knitr
7 changes: 7 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Generated by roxygen2: do not edit by hand

export(dm2)
export(ltc)
export(ltcchk)
import(graphics)
import(stats)
26 changes: 26 additions & 0 deletions R/alphaltc.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#' Line x Tester data (only Crosses) in Alpha Lattice design.
#'
#' The Line x Tester data of containing only crosses laid out in Alpha Lattice design.
#'
#'@docType data
#'
#'@usage data(alphaltc)
#' @format A data frame of five variables of 15 crosses derived from five lines and three testers.
#' \describe{
#' \item{replication}{four replications}
#' \item{block}{ten blocks}
#' \item{line}{five inbred genotype}
#' \item{tester}{three inbred genotype}
#' \item{yield}{trait of intrest}
#'
#' }
#'
#'@seealso
#' \code{\link{rcbdltc}}
#' ,\code{\link{alphaltcchk}}
#' ,\code{\link{rcbdltcchk}}
#'
#'
#' @examples result = ltc(alphaltc, replication, line, tester, yield, block)

"alphaltc"
24 changes: 24 additions & 0 deletions R/alphaltcchk.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#' Line x Tester data (Crosses and Checks) in Alpha Lattice
#'
#' The sample Line x Tester data of containing crosses and checks laid out in Alpha Lattice design. The data is composed of five lines, three testers
#' and three checks.
#'
#'@docType data
#'
#'@usage data(alphaltcchk)
#' @format A dataframe of six variables.
#' \describe{
#' \item{replication}{three replications}
#' \item{block}{six blocks}
#' \item{line}{five lines}
#' \item{tester}{three testers}
#' \item{yield}{trait of intrest}
#' }
#'@seealso
#' \code{\link{rcbdltc}}
#' ,\code{\link{alphaltc}}
#' ,\code{\link{rcbdltcchk}}
#'
#' @examples result = ltcchk(alphaltcchk, replication, line, tester, check, yield, block)

"alphaltcchk"
Loading

0 comments on commit 1ed4178

Please sign in to comment.