summary.jrfit: Summary function for jrfit.

Description Usage Arguments Details Author(s) References Examples

Description

Returns a summary table for with estimates, standard errors, t-ratios, and p-values.

Usage

1
2
## S3 method for class 'jrfit'
summary(object,int=!object$fitint,df=NULL,...)

Arguments

object

The result of a call to jrfit

int

Should first row (intercept) of summary be printed? Defaults to FALSE if itercept was fit in jrfit.

df

Degrees of freedom to use in calculation of p-values.

...

additional arguments. currently unused.

Details

Forms standard table of estimates, standard errors, Wald type t-ratios and p-values.

Uses df = N - ncol(X) - 1 if var.type was set to 'cs' in jrfit where ncol(X) is the number of columns in the full design matrix including the columns for the block effects if there were fit too. Otherwise df = m.

Author(s)

John Kloke kloke@biostat.wisc.edu

References

Kloke, J.D., McKean, J.W., Rashid, M. (2009), Rank-based estimation and associated inferences for linear models with cluster correlated errors, Journal of the American Statistical Association, 104, 384-390.

Examples

1
2
3
4
5
data(crabgrass)
x<-crabgrass[,1:6]
y<-crabgrass[,7]
block<-crabgrass[,8]
summary(jrfit(x,y,block))

kloke/jrfit documentation built on May 20, 2019, 12:34 p.m.