get_ig_for_feature_table_and_vector: Get information gain

Description Usage Arguments Value Examples

View source: R/ranking_of_features.R

Description

This functions runs information gain for a feature table and a class, returning the scores of information gain for all features

Usage

1
get_ig_for_feature_table_and_vector(feature_table, target_vector)

Arguments

feature_table

A table of features (observations in rows, variables in columns)

target_vector

A target vector, factor containing classes of the observations. Note: the observations must be in the same order as the parameter x.

Value

A dataframe containing the SU values for each feature

Examples

1
2
3
4
5
6
7
data(scDengue)
exprs <- SummarizedExperiment::assay(scDengue, 'logcounts')
discrete_expression <- as.data.frame(discretize_exprs(exprs))
infection <- SummarizedExperiment::colData(scDengue)
target <- infection$infection
ig_values <- get_ig_for_feature_table_and_vector(discrete_expression[,],target[])
ig_values[1:10,]

lubianat/FCBF documentation built on March 3, 2021, 12:35 a.m.