xtable.TukeyC: xtable method for 'TukeyC' objects.

View source: R/xtable.TukeyC.R

xtable.TukeyCR Documentation

xtable method for TukeyC objects.

Description

Convert an TukeyC object to an xtable.TukeyC object, which can then be printed as a LaTeX or HTML table. This function is an additional method to xtable function of xtable package.

Usage


## S3 method for class 'TukeyC'
xtable(x, ...)

Arguments

x

A given object of the class TukeyC.

...

Further arguments (require by xtable::xtable).

Author(s)

Jose Claudio Faria (joseclaudio.faria@gmail.com)
Enio G. Jelihovschi (eniojelihovs@gmail.com)
Ivan Bezerra Allaman (ivanalaman@gmail.com)

See Also

xtable

Examples

data(RCBD) 
## Not run: 
  if(require(xtable)){
    lm1 <- with(RCBD,
                  lm(y ~ blk + tra,
                       data=dfm))

    tk1 <-  TukeyC(lm1,
                   which='tra')
    tb <- xtable(tk1)
    print(tb)
  }
 
## End(Not run) 

TukeyC documentation built on Aug. 31, 2023, 5:06 p.m.