Nothing
#'
#' @title Calculates the kurtosis of a numeric variable
#' @description This function calculates summary statistics that are returned to the client-side and
#' used for the estimation of the combined kurtosis of a numeric variable across all studies.
#' @details The function calculates the sum of squared differences between the values of x and the global
#' mean of x across all studies, the sum of quatric differences between the values of x and the global mean
#' of x across all studies and the number of valid observations of the input variable x.
#' @param x a string character, the name of a numeric variable.
#' @param global.mean a numeric, the combined mean of the input variable across all studies.
#' @return a list including the sum of quartic differences between the values of x and the global mean of x across
#' all studies, the sum of squared differences between the values of x and the global mean of x across all studies,
#' the number of valid observations (i.e. the length of x after excluding missing values), and a validity message
#' indicating indicating a valid analysis if the number of valid observations are above the protection filter
#' nfilter.tab or invalid analysis otherwise.
#' @author Demetris Avraam, for DataSHIELD Development Team
#' @export
#'
kurtosisDS2 <- function(x, global.mean){
#############################################################
# MODULE 1: CAPTURE THE nfilter SETTINGS
thr <- dsBase::listDisclosureSettingsDS()
nfilter.tab <- as.numeric(thr$nfilter.tab)
#############################################################
x <- eval(parse(text=x), envir = parent.frame())
x <- x[stats::complete.cases(x)]
if(length(x) < nfilter.tab){
sum_quartics.out <- NA
sum_squares.out <- NA
studysideMessage <- "FAILED: Nvalid less than nfilter.tab"
}else{
sum_quartics.out <- sum((x - global.mean)^4)
sum_squares.out <- sum((x - global.mean)^2)
studysideMessage <- "VALID ANALYSIS"
}
out.obj <- list(Sum.quartics=sum_quartics.out, Sum.squares=sum_squares.out, Nvalid=length(x), ValidityMessage=studysideMessage)
return(out.obj)
}
#AGGREGATE FUNCTION
# kurtosisDS2
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.