Nothing
#' Convert non-zero S to Chi-square statistic
#'
#' Converts the robust effect size index (S) to Chi-square statistic, given that S is greater than 0.
#' For an S value of 0, only an upper bound on the Chi-square statistic can be computed.
#' Vector arguments are accepted. If different length arguments are passed they are dealt with in the usual way of R.
#' @param S The value of the RESI estimate.
#' @param df Number of degrees of freedom of the chi-square statistic.
#' @param n Number of independent samples.
#' @return Returns a scalar or vector argument of the Chi-square statistic.
#' @details The formula for converting a RESI estimate above 0 to Chi-square statistic is:
#'
#' \eqn{ chisq = n*S^2 + df}
#'
#' If the RESI estimate is 0, all that is known is that the Chi-square statistic is less than or equal to the degrees of freedom.
#' @examples
#' # convert S estimates with corresponding degrees of freedom to Chi-square estimates
#' S_ests = c(0.2, 0.4, 0.6)
#' dfs = c(2, 1, 3)
#' S2chisq(S = S_ests, df = dfs, n = 300)
#'
#' @export
S2chisq = function(S, df, n){
if (any(S < 0)){
stop("RESI estimates must be non-negative for Chi-square statistics")
}
chisq = n*S^2 + df
if (any(S == 0)){
if(length(S) == 1){
stop(paste0("Function is not 1-1 for S = 0, Chi-square is less than or equal to df (", df, ")"))
} else{
chisq[S == 0]= NA
warning("Function is not 1-1 for S = 0, Chi-square is less than or equal to corresponding df")
}
}
chisq
}
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.