check_data_reliability: Check inter-rater or test-retest reliability between numeric...

View source: R/check_data_reliability.R

check_data_reliabilityR Documentation

Check inter-rater or test-retest reliability between numeric columns

Description

This function checks for inter-rater or test-retest reliability between all pairs of numeric columns in a data frame by computing the correlation between each pair and reporting if it is less than 0.8.

Usage

check_data_reliability(df)

Arguments

df

A data frame

Value

A message indicating whether the data is reliable or not between each pair of columns.

Examples

df <- data.frame(x = c("a", "b", "c"), y = c(4, 5, 6), z = c(7, 8, 180))
check_data_reliability(df)


fixr documentation built on April 4, 2025, 12:30 a.m.