Nothing
#' T distribution - one-tailed
#'
#' @param t_score t value
#' @param degrees_of_freedom degrees of freedom
#' @importFrom stats pt
#' @return value
t_dist_one_tailed <- function(t_score, degrees_of_freedom) {
pt(-abs(t_score), degrees_of_freedom)
}
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.