interpret_slr: Interpret an SLR Value

View source: R/slrs.R

interpret_slrR Documentation

Interpret an SLR Value

Description

Verbally interprent an SLR value.

Usage

interpret_slr(df)

Arguments

df

A dataframe created by calculate_slr.

Value

A string

Examples

df <- data.frame("score" = 5, "slr" = 20)
interpret_slr(df)

df <- data.frame("score" = 0.12, "slr" = 0.5)
interpret_slr(df)

df <- data.frame("score" = 1, "slr" = 1)
interpret_slr(df)

df <- data.frame("score" = 0, "slr" = 0)
interpret_slr(df)


handwriterRF documentation built on April 4, 2025, 5:38 a.m.