Learn R Programming

Agreement (version 0.8-1)

summary.report: Summarize an Agreement Object

Description

This function is a method for summary for a unified agreement object class report, which can be get from function agreement.

Usage

"summary"(object, ...)

Arguments

object
The name of an object of class report.
...
Arguments passed to the print method.

See Also

summary.agreement, agreement

Examples

Run this code
data(DCLHb);
HemocueAve <- apply(DCLHb[,c("HEMOCUE1","HEMOCUE2")],1,mean);
SigmaAve <- apply(DCLHb[,c("SIGMA1","SIGMA2")],1,mean);

agr=agreement(y=HemocueAve,x=SigmaAve,V_label="Hemacue",H_label="Sigma",min=0,max=2000,by=250,CCC_a=0.9775,CP_a=0.9,TDI_a=150,error="const",target="random",dec=3,alpha=0.05);
summary(agr);

Run the code above in your browser using DataLab