Association Between a Categorical Response and a Categorical Predictor
Source:R/preference_order_methods.R
f_v.Rd
Computes Cramer's V, a measure of association between categorical or factor variables. Please see cor_cramer_v()
for further details.
See also
Other preference_order_functions:
f_auc
,
f_r2
,
f_r2_counts
,
f_v_rf_categorical()
Examples
#load example data
data(vi)
#reduce size to speed-up example
vi <- vi[1:1000, ]
#categorical response and predictor
#to data frame without NAs
df <- data.frame(
y = vi[["vi_factor"]],
x = vi[["soil_type"]]
) |>
na.omit()
#Cramer's V
f_v(df = df)
#> [1] 0.5000691