print.Rttest: Print.Rttest

View source: R/Rttest.R

print.RttestR Documentation

Print.Rttest

Description

Displays the confidence interval and type of test preformed. If 'html' is set to 'True' then the 2 samples x and y are also printed using kable.

Usage

## S3 method for class 'Rttest'
print(x, html = F, width = NULL, height = 400, ...)

Arguments

x

Rttest object.

html

a logical determining whether or not to utilize kable for sample output.

width

The width in pixels(px). (defualt: NULL)

height

The height in pixels(px). This can be set to NULL for and unbounded height. (defualt: 400)

...

unused

Examples

x <- rnorm(30,5,2)
y <- rnorm(40,3,2)
a <- 0.1
obj <- Rttest(x, y, a)

print(obj)
print(obj, TRUE, 300)
print(obj, TRUE, 400, 200)


rsteele5/ttest.rjs documentation built on May 15, 2022, 1:23 p.m.