owprm.default: Perform Occasions Within Phases repeated measures analysis.

Description Usage Arguments Value Examples

Description

Perform Occasions Within Phases repeated measures analysis.

Usage

1
2
## Default S3 method:
owprm(aovObj, ...)

Arguments

aovObj

object returned from aov

...

other arguments passed to function (not currently in use)

The fully saturated aov object has the form

y_{ijk} = π_{i} + Φ_{j} + o_{k(j)} + π Φ_{ij} + π o_{ik(j)}

Value

owp_aovObj A list containing an anova summary table of one line and a summary of the aovObj

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
data(ascorbic)
aovObj <- aov(ascorbic.acid ~ patient*Phase*occ, data = ascorbic)
aovObj
## To avoid having warning messages sent to console
## suppressWarnings(owprm(aovObj))
owprm_aovObj <- owprm(aovObj)
owprm_aovObj
summary(owprm_aovObj)
## display p value in prettier form
options(digits = 4, scipen = 2)
owprm_aovObj
summary(owprm_aovObj)

wgalvord/owprm documentation built on May 4, 2019, 5:22 a.m.