Nothing
#' @rdname se_meanx
#' @export
se_rxy <- function(x, y, na.rm = FALSE) {
if (na.rm) {
i <- stats::complete.cases(x, y)
x <- x[i]
y <- y[i]
}
root_n <- sqrt(length(x))
r <- stats::cor(x, y)
(1 - r^2) / root_n
}
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.