oneway.factor: oneway.factor

Description Usage Arguments Value Author(s) Examples

View source: R/oneway.R

Description

This method uses the standard input of a factor representing groups and a numeric response.

Usage

1

Arguments

z

The *z* argument should be the factor with levels representing samples used to split the response valuables into a list .

y

The response

...

Other arguments

Value

Return df, SS, MS, P value.

Author(s)

Xueli Gao

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (z, y, ...) 
{
    x <- split(y, z)
    result <- oneway(x)
    result
  }

xueligao/oneway documentation built on May 4, 2019, 1:26 p.m.