comparerel {clintools}R Documentation

Compare measures of reliability (comparerel)

Description

comparerel() is a function which compares measures from calcrel using bootstrapping.

Usage

comparerel(d1,d2,d3,d4,n_boot,seedno)

Arguments

d1

list of numbers from measurement one of sample 1

d2

list of numbers from measurement two of sample 1 (same order as for d1)

d3

list of numbers from measurement one of sample 2

d4

list of numbers from measurement two of sample 2 (same order as for d2)

n_boot

numbers of iterations (default is 1000)

seedno

the seed number used for bootstrapping (default is)

Value

Returns a nested list of difference between reliability measures using bootstrapping.

Examples

## Not run: 
   d1 <- rnorm(15,10,1)
   d2 <- rnorm(15,10,1)
   d3 <- rnorm(15,10,1)
   d4 <- rnorm(15,10,1)
   comparerel(d1,d2,d3,d4)

## End(Not run)

[Package clintools version 0.9.10.1 Index]