Package: binomialRF 0.1.0

Samir Rachid Zaim
binomialRF: Binomial Random Forest Feature Selection
The 'binomialRF' is a new feature selection technique for decision trees that aims at providing an alternative approach to identify significant feature subsets using binomial distributional assumptions (Rachid Zaim, S., et al. (2019)) <doi:10.1101/681973>. Treating each splitting variable selection as a set of exchangeable correlated Bernoulli trials, 'binomialRF' then tests whether a feature is selected more often than by random chance.
Authors:
binomialRF_0.1.0.tar.gz
binomialRF_0.1.0.tar.gz(r-4.5-noble)binomialRF_0.1.0.tar.gz(r-4.4-noble)
binomialRF_0.1.0.tgz(r-4.4-emscripten)binomialRF_0.1.0.tgz(r-4.3-emscripten)
binomialRF.pdf |binomialRF.html✨
binomialRF/json (API)
NEWS
# Install 'binomialRF' in R: |
install.packages('binomialRF', repos = 'https://cloud.r-project.org') |
- pmf_list - A prebuilt distribution for correlated binary data
This package does not link to any Github/Gitlab/R-forge repository. No issue tracker or development information is available.
softwaregenepredictionstatisticalmethoddecisiontreedimensionreductionexperimentaldesign
Last updated 5 years agofrom:f29cabf788. Checks:3 OK. Indexed: yes.
Target | Result | Latest binary |
---|---|---|
Doc / Vignettes | OK | Mar 13 2025 |
R-4.5-linux | OK | Mar 13 2025 |
R-4.4-linux | OK | Mar 13 2025 |
Exports:binomialRFcalculateBinomialPcalculateBinomialP_Interactiongeneset_binomialRFk_binomialRF
Dependencies:data.tablejsonliterandomForestrlistXMLyaml
Citation
To cite package ‘binomialRF’ in publications use:
Rachid Zaim S (2020). binomialRF: Binomial Random Forest Feature Selection. R package version 0.1.0, https://CRAN.R-project.org/package=binomialRF.
Corresponding BibTeX entry:
@Manual{, title = {binomialRF: Binomial Random Forest Feature Selection}, author = {Samir {Rachid Zaim}}, year = {2020}, note = {R package version 0.1.0}, url = {https://CRAN.R-project.org/package=binomialRF}, }
Readme and manuals
binomialRF R Package
The binomialRF package is an R package that provides a feature selection algorithm to be used in randomForest classifiers. Treating each tree as a quasi binomial stochastic process in a random forest, binomialRF determines a feature’s importance by how often they are selected in practice vs. as expected by random chance. Given that trees are co-dependent as they subsample the same data, a theoretical adjustment is made using a generalization of the binomial distribution that adds a parameter to model correlation/association between trials.
Installing from CRAN
The binomialRF R package is on CRAN, and you can install as follows:
install.packages('binomialRF')
The CRAN version will always be the most stable release.
Installing from GitHub
To install experimental updates from the binomialRF , install it from GitHub directly, follow the code instructions below!
install.packages("devtools")
# The following dependencies might need to be installed
# manually if they're not installed by devtools.
install.packages(c("ggplot2", "randomForest", "data.table","rlist", "correlbinom"))
devtools::install_github("SamirRachidZaim/binomialRF")
library(binomialRF)
These GitHub updates and features are experimental and will not be available in the CRAN version until the next, stable release is pushed.
References:
The main manuscript is included as a preprint in bioRxiv: https://doi.org/10.1101/681973, and has also been submitted for consideration at Frontiers in Genetics.
Help Manual
Help page | Topics |
---|---|
random forest feature selection based on binomial exact test | .cv_binomialRF |
random forest feature selection based on binomial exact test | binomialRF |
calculate the probability, p, to conduct a binomial exact test | calculateBinomialP |
calculate the probability, p, to conduct a binomial exact test | calculateBinomialP_Interaction |
random forest feature selection based on binomial exact test | geneset_binomialRF |
random forest feature selection based on binomial exact test | k_binomialRF |
A prebuilt distribution for correlated binary data | pmf_list |