Introduction

This package contains two wrapper function.

  1. posthocTGH in userfriendlyscience package

This function in compwrap package accepts formula.

Installation

remote::install_github("toshi-ara/compwrap")

Example

Tukey test and Games-Howell test

library(compwrap)

Tukey method

## Default
posthocTGH(y=ChickWeight$weight, x=ChickWeight$Diet, method="tukey")

## Formula interface
posthocTGH(weight ~ Diet, data = ChickWeight, method="tukey")

Games-Howell method (default)

## Default
posthocTGH(y=ChickWeight$weight, x=ChickWeight$Diet)

## Formula interface
posthocTGH(weight ~ Diet, data = ChickWeight)


toshi-ara/compwrap documentation built on May 23, 2019, 8:19 p.m.