R/dataset_hash_maker.R

Defines functions dataset_hash_maker

Documented in dataset_hash_maker

#' Calculates hash of a data set
#' Used to detect upload of a new datasets
#' 
#' @param dataset \code{data.frame} uploaded data frame for calculating hash on
#' 
#' @return Hash of a dataset
#' 
#' 
dataset_hash_maker <- function(dataset){
  sum(round(dataset, digits = 2), na.rm = TRUE)
}
PrzeChoj/predPCR documentation built on Sept. 8, 2020, 11:44 p.m.