Skip to contents

Extracts the F statistics of the R-square from an object and returns it as a text string.

Usage

text_rsq_f(x, ...)

# S3 method for default
text_rsq_f(
  x,
  digits = getOption("out2text_coef_digits", 3),
  format = getOption("out2text_coef_format", "f"),
  italics = FALSE,
  ...
)

# S3 method for lm
text_rsq_f(
  x,
  digits = getOption("out2text_coef_digits", 3),
  format = getOption("out2text_coef_format", "f"),
  italics = FALSE,
  ...
)

Arguments

x

A supported object with a F statistic the results.

...

Optional arguments. Ignored for now.

digits

The number of decimal places to keep. To be passed to formatC().

format

The format string used in formatC(). Default is "f".

italics

Logical. Whether the statistics should be italicized (using markdown). Default is FALSE.

Value

A one-element character vector.

Details

Details (Include subjects for verbs.) (Use 3rd person forms for verbs.)

Examples


set.seed(894252)
n <- 10
x <- rnorm(n)
y <- .6 * x + rnorm(n, 0, .8)
out <- lm(y ~ x)
text_rsq_f(out)
#> [1] "F(1, 8) = 13.254"