Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_sd_null_two_sample_t_test()

Value

A character string containing a mathematical formula

Examples

typeset_sd_null_two_sample_t_test
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$sd_{null}=\\sqrt{\\frac{s_1^2}{n_1}+\\frac{s_2^2}{n_2}}$"
#>     }
#>     else {
#>         cat("$sd_{null}=\\sqrt{\\frac{s_1^2}{n_1}+\\frac{s_2^2}{n_2}}$")
#>     }
#> }
#> <bytecode: 0x5607c0d88090>
#> <environment: namespace:ma206equations>