R/utils.R

Defines functions GerminaQuant_full rep_row

Documented in rep_row

#' @importFrom dplyr %>%
#' @export
dplyr::`%>%`

utils::globalVariables(c("."))

#' Repeated Rows in a data matrix
#' 
#' @description This function made a data table with the evaluation days of germination
#' @param Rseq Row sequence for the data matrix
#' @param Nrow Number of rows for the data matrix
#' @return Data Matrix with day of the germination
#' @export

rep_row <- function(Rseq,Nrow){
  matrix(rep(Rseq,each=Nrow),nrow=Nrow)
}


GerminaQuant_full <- function() {
  
  GerminaR::GerminaQuant(dependencies = TRUE)
  
}
Flavjack/GerminaR documentation built on June 8, 2025, 3:22 a.m.