Package 'IRR2FPR'

Title: Computing False Positive Rate from Inter-Rater Reliability
Description: Implements a 'Shiny Item Analysis' module and functions for computing false positive rate and other binary classification metrics from inter-rater reliability based on Bartoš & Martinková (2022) <doi:10.48550/arXiv.2207.09101>.
Authors: František Bartoš [aut, cre]
Maintainer: František Bartoš <[email protected]>
License: GPL-3
Version: 0.1
Built: 2024-11-07 04:42:02 UTC
Source: https://github.com/fbartos/irr2fpr

Help Index


Compute the false negative rate

Description

Compute the false negative rate based on the inter-rater reliability and the proportion of selected candidates

Usage

compute_false_negative_rate(IRR, proportion_selected)

Arguments

IRR

The inter-rater reliability

proportion_selected

The proportion of selected candidates

Value

The false negative rate

Examples

compute_false_negative_rate(0.75, 0.10)

Compute the false positive rate

Description

Compute the false positive rate based on the inter-rater reliability and the proportion of selected candidates

Usage

compute_false_positive_rate(IRR, proportion_selected)

Arguments

IRR

The inter-rater reliability

proportion_selected

The proportion of selected candidates

Value

The false positive rate

Examples

compute_false_positive_rate(0.75, 0.10)

Compute the proportion of correctly selected candidates

Description

Compute proportion of correctly selected candidates based on the inter-rater reliability and the proportion of selected candidates

Usage

compute_proportion_of_correctly_selected(IRR, proportion_selected)

Arguments

IRR

The inter-rater reliability

proportion_selected

The proportion of selected candidates

Value

The proportion of correctly selected candidates

Examples

compute_proportion_of_correctly_selected(0.75, 0.10)

Compute the true positive rate

Description

Compute the true positive rate based on the inter-rater reliability and the proportion of selected candidates

Usage

compute_true_positive_rate(IRR, proportion_selected)

Arguments

IRR

The inter-rater reliability

proportion_selected

The proportion of selected candidates

Value

The true positive rate

Examples

compute_true_positive_rate(0.75, 0.10)

Interactive Module for Inter-Rater Reliability to False Positive Rate Conversion

Description

This module allows users to convert inter-rater reliability (IRR) to false positive rate (FPR) as described in Bartoš and Martinková (2022).

Author(s)

František Bartoš

References

Bartoš, F., & Martinková, P. (2022). Selecting applicants based on multiple ratings: Using binary classification framework as an alternative to inter-rater reliability. doi:10.48550/arXiv.2207.09101


Compute IRR from the Spearman-Brown formula

Description

Compute the inter-rater reliability based on the Spearman-Brown formula

Usage

spearman_brown_formula(IRR_1, n_raters)

Arguments

IRR_1

The inter-rater reliability of the first rater

n_raters

The number of raters

Value

The inter-rater reliability

Examples

spearman_brown_formula(0.5, 3)