summary.Pistar | R Documentation |
"Pistar"
Objects
summary
method for class
"Pistar"
## S4 method for signature 'Pistar' summary(object, conf = 0.95, pi_side = NULL, par_side = NULL, lower = NULL, upper = NULL, bias = FALSE, ...) ## S4 method for signature 'SummaryPistar' print(x, digits = 2, ...)
object |
an object of |
x |
an object of |
digits |
integer indicating the number of decimal places to print |
conf |
Confidence level expressed as a number between 0 and 1. e.g. for a 95% confidence interval supply 0.95 |
pi_side |
Sidedness of c.i. for pi*.
|
par_side |
Sidedness of c.i. for reported estimates of parameters other than
pi*.
|
lower |
lowest possible value for one-sided c.i. |
upper |
largest possible value for one-sided c.i. |
bias |
logical: Apply bias correction? Bias correction currently not implemented. |
... |
arguments to be passed to methods; not used |
Object of class
"SummaryPistar"
, a list with the following
slots
oldcall |
the matched call inherited from the input object of |
pred |
inherited from the input object of |
est |
A |
Juraj Medzihorsky
# create data: H <- matrix((1:4)*1e1, byrow=TRUE, ncol=2) # pi* for independence in a 2-by-2 table h <- pistar(proc="2by2", data=H, alpha=1, jack=TRUE) # print 'pistar' object h # summarize 'pistar' object s <- summary(h) # print 'summary.pistar' object s # print the 'summary.pistar' object to 4 decimal places print(s, digits=4) # compare the structure of the objects str(h) str(s)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.