Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_se_two_sample_t_test()

Value

A character string containing a mathematical formula

Examples

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