Skip to contents

The funtion_name equation for use in plain texts

Usage

typeset_eq_var()

Value

A character string containing a mathematical formula

Examples

typeset_eq_var
#> function (inline = FALSE) 
#> {
#>     if (inline) {
#>         "$Var(X) = E[(X-\\mu)^2] = \\sigma^2_x = \\sum_1^n(x_i-\\mu)^2p_i$"
#>     }
#>     else {
#>         cat("$Var(X) = E[(X-\\mu)^2] = \\sigma^2_x = \\sum_1^n(x_i-\\mu)^2p_i$")
#>     }
#> }
#> <bytecode: 0x5607b90762d0>
#> <environment: namespace:ma206equations>