print.oneway: print.oneway

Description Usage Arguments Value Author(s) Examples

View source: R/oneway.R

Description

print out oneway results

Usage

1

Arguments

x

result of oneway analysis

...

other arguments

Value

df SS MS P value

Author(s)

Xueli Gao

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
##---- 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 (x, ...) 
{
    cat("Call:\n")
    print(x$call)
    cat("SS Between group")
    print(x[2])
    cat("\nSS within group")
    print(x[3])
    cat("\ndf Between group")
    print(x[4])
    cat("\ndf within group")
    print(x[5])
  }

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