Nothing
# This function normalizes regression coefficients
# using their standard errors 'se' and the number of samples 'N'.
normalizeSxy <- function(S_XY_raw, se, N) {
S_XY = (1/sqrt(N)) * (S_XY_raw/se)
return(S_XY)
}
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.