Learn R Programming

biogram (version 1.3)

calc_cs: Calculate Chi-squared-based measure

Description

Computes Chi-squared-based measure between features and target vector.

Usage

calc_cs(feature, target_b, len_target, pos_target)

Arguments

feature
feature vector.
target_b
target in bits (as per as.bit).
len_target
length of the target vector.
pos_target
number of positive cases in the target vector.

Value

A numeric vector of length 1 representing computed Chi-square values.

See Also

test_features.

chisq.test - Pearson's chi-squared test for count data.

Examples

Run this code
tar <- sample(0L:1, 100, replace = TRUE)
feat <- sample(0L:1, 100, replace = TRUE)
library(bit) # used to code vector as bit
calc_cs(feat, as.bit(tar), 100, sum(tar))

Run the code above in your browser using DataLab