Learn R Programming

clintools (version 0.9.10.1)

calcrel: Calculation of reliability (calcrel)

Description

calcrel() is a function used to calculate different reliability measures, including Coefficient of variance, smallest real difference, intraclass correlation coefficient, and Bland-Altman plot derived bias with 95% limits of agreement.

Usage

calcrel(d1,d2)

Value

Returns a nested list of reliability measures.

Arguments

d1

list of numbers from measurement one

d2

list of numbers from measurement two (same order as for measurement one)

Examples

Run this code
   d1 <- rnorm(15,10,1)
   d2 <- rnorm(15,10,1)
   calcrel(d1,d2)

Run the code above in your browser using DataLab