Skip to content

Commit

Permalink
text
Browse files Browse the repository at this point in the history
  • Loading branch information
reyzaguirre committed Mar 11, 2019
1 parent b175ed3 commit 5207154
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion R/check_freq.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#' environments. This is a wrapper for \code{ck.rcbd} and \code{ck.f} functions.
#' @param trait The trait to analyze.
#' @param geno Genotypes.
#' @param env Environments.
#' @param env Environments, \code{NULL} if there are no environments.
#' @param rep The replications.
#' @param dfr The name of the data frame.
#' @return Information about the balance, missing values, and replications of the design.
Expand Down
4 changes: 2 additions & 2 deletions R/ck_fq.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#' This function cheks the frequencies of valid cases for treatments and replications.
#' @param trait The trait.
#' @param factors The factors.
#' @param rep The replications.
#' @param rep The replications, \code{NULL} for a CRD.
#' @param dfr The name of the data frame.
#' @return A table of frequencies of valid cases for all factors' levels combinations
#' (\code{tf}), a table of frequencies of valid cases for all factors' levels and
Expand Down Expand Up @@ -36,7 +36,7 @@
#' ck.fq("y", c("A", "B"), "block", dfr)
#' @export

ck.fq <- function(trait, factors, rep = NULL, dfr) {
ck.fq <- function(trait, factors, rep, dfr) {

# Number of missing values

Expand Down
4 changes: 2 additions & 2 deletions R/ck_fs.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#'
#' This function cheks the structure of factors.
#' @param factors The factors.
#' @param rep The replications.
#' @param rep The replications, \code{NULL} for a CRD.
#' @param dfr The name of the data frame.
#' @return The number of factors (\code{nf}), the number of levels of the factors
#' (\code{nl}), the lists of levels of factors (\code{lf}), the number of treatments
Expand All @@ -29,7 +29,7 @@
#' ck.fs(c("A", "B"), "block", dfr)
#' @export

ck.fs <- function(factors, rep = NULL, dfr) {
ck.fs <- function(factors, rep, dfr) {

# Check missing values for factors

Expand Down
2 changes: 1 addition & 1 deletion man/check.freq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/ck.fq.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/ck.fs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5207154

Please sign in to comment.