R/zvalue.R

Defines functions sdvalue

Documented in sdvalue

#' @title A function for finding the z values.
#'
#' @param z The z values for a dataset
#'
#' @return The s^2 value
#' @export
#'
#' @examples
#'(enter z array, return standard value squared)
sdvalue=function(z){
  (sd(z))^2
}
msears8/PROJ1.STATS documentation built on Nov. 23, 2020, 11:29 p.m.