Learn R Programming

Agreement (version 0.8-1)

DCLHb: DCLHb dataset

Description

DCLHb is a treatment solution contain oxygen carrying hemoglobin. The DCLHb level is routinely measured by the Sigma method, and the simpler HemoCue method was modified to reproduce the DCLHb values of the Sigma method. The DCLHb values of each sample were measured by both methods twice.

Usage

data(DCLHb)

Arguments

Format

A data frame with 299 observations on 4 variables, 2 variables for Sigma method and 2 variables for HemoCue method.

References

Lawrence Lin, A. S Hedayat, Bikas Sinha, Min Yang. Journal of the American Statistical Association. March 1, 2002, 97(457): 257-270.

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