print.Rttest | R Documentation |
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.
## S3 method for class 'Rttest' print(x, html = F, width = NULL, height = 400, ...)
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 |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.