Tidy for a(n) rmcorr object
Usage
# S3 method for class 'rmc'
tidy(x, ...)Value
A tidy tibble::tibble() summarizing component-level
information about the model.
term: the three model termsdf: the degrees of freedomestimate: the parameter estimatesumsq: the sums of squaresstatistic: the F-statisticp.value: the p-value
Examples
my.rmc <- rmcorr(Subject, PaCO2, pH, bland1995)
#> Warning: 'Subject' coerced into a factor
tidy(my.rmc)
#> # A tibble: 3 × 6
#> term df estimate sumsq statistic p.value
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 Subject 7 -0.108 2.97 48.2 5.68e-17
#> 2 PaCO2 1 7.66 0.115 13.1 8.47e- 4
#> 3 Error 38 NA 0.334 NA NA
