Learn R Programming

rosetta (version 0.3.12)

posthocTGH: posthocTGH

Description

This function is used by the 'oneway' function for oneway analysis of variance in case a user requests post-hoc tests using the Tukey or Games-Howell methods.

Usage

posthocTGH(
  y,
  x,
  method = c("games-howell", "tukey"),
  conf.level = 0.95,
  digits = 2,
  p.adjust = "none",
  formatPvalue = TRUE
)

# S3 method for posthocTGH print(x, digits = x$input$digits, ...)

Value

A list of three elements:

input

List with input arguments

intermediate

List of intermediate objects.

output

List with two objects 'tukey' and 'games.howell', containing the outcomes for the respective post-hoc tests.

Arguments

y

y has to be a numeric vector.

x

x has to be vector that either is a factor or can be converted into one.

method

Which post-hoc tests to conduct. Valid values are "tukey" and "games-howell".

conf.level

Confidence level of the confidence intervals.

digits

The number of digits to show in the output.

p.adjust

Any valid p.adjust method.

formatPvalue

Whether to format the p values according to APA standards (i.e. replace all values lower than .001 with '<.001'). This only applies to the printing of the object, not to the way the p values are stored in the object.

...

Any additional arguments are passed on to the print function.

Author

Gjalt-Jorn Peters (Open University of the Netherlands) & Jeff Bagget (University of Wisconsin - La Crosse)

Maintainer: Gjalt-Jorn Peters gjalt-jorn@userfriendlyscience.com

Examples

Run this code

### Compute post-hoc statistics using the tukey method
posthocTGH(y=ChickWeight$weight, x=ChickWeight$Diet, method="tukey");
### Compute post-hoc statistics using the games-howell method
posthocTGH(y=ChickWeight$weight, x=ChickWeight$Diet);

Run the code above in your browser using DataLab