#'Function to calculate the summary by mean for breeding data
#'
#'@param data A data frame
#'@param idx The name or position of the measured variable that will be summarized.
#'@param groupfactors A vector containing names of columns that contain grouping variables
#'@param na.rm A boolean that indicates whether to ignore NA's
#'@return A data frame with the count, mean and standard desviation
#'@author Omar Benites
#'@details This function returns the summary by mean.
#'Furthermore, this function use the doBy package.
#'@references Some code for this function were inspired by Cookbook for R.
#'@keywords stats, summary
#'@family stats,summary
#'@export
#'
sbmean <- function(data=NULL,idx, groupfactors=NULL, na.rm=FALSE) {
if(missing(data)){
stop("Please enter your data")
}
if(missing(idx)){
stop("Please enter the name or position of the measured variable")
}
if(missing(groupfactors)){
stop("Please enter the name of columns that contain grouping variables")
}
length2 <- function (x, na.rm=FALSE) {
if (na.rm) sum(!is.na(x))
else length(x)
}
datos <- data
vvv=datos[,idx]
lbl=names(datos[idx])
measurevar =lbl
formula <- as.formula(paste(measurevar, paste(groupfactors, collapse=" + "), sep=" ~ "))
datac <- doBy::summaryBy(formula, data=data, FUN=mean, na.rm=na.rm)
names(datac)[ names(datac) == paste(measurevar, ".mean", sep="") ] <- paste(measurevar,"_Mean",sep="")
return(datac)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.