Learn R Programming

fuzzyforest

fuzzyforest is an extension of random forests designed to yield less biased variable importance rankings when features are correlated with one another. The algorithm requires that features be partitioned into seperate groups or modules such that the correlation within groups are large and the correlation between groups is small. fuzzyforest allows for easy integration the package WGCNA.

  • the latest released version can be downloaded from CRAN: install.packages("fuzzyforest")

To enable use of the full functionality of fuzzyforest packages WGCNA must be installed. However, WGCNA requires the installation of a few packages form bioConductor. To install WGCNA, type the following lines into the console:

setRepositories(ind=1:2)  
install.packages("WGCNA")
source("http://bioconductor.org/biocLite.R")
biocLite("AnnotationDbi", type="source")
biocLite("GO.db")

If further issues with the installation of WGCNA arise see the WGCNA website: http://labs.genetics.ucla.edu/horvath/CoexpressionNetwork/Rpackages/WGCNA/index.html#manualInstall

Acknowledgments

This work is partially supported through NSF grant IIS 1251151.

Copy Link

Version

Install

install.packages('fuzzyforest')

Monthly Downloads

273

Version

1.0.8

License

GPL-3

Maintainer

Daniel Conn

Last Published

March 25th, 2020

Functions in fuzzyforest (1.0.8)

select_control

Set Parameters for Selection Step of Fuzzy Forests
select_RF

Carries out the selection step of fuzzyforest algorithm.
predict.fuzzy_forest

Predict method for fuzzy_forest object. Obtains predictions from fuzzy forest algorithm.
multi_class_lr

Multinomial Logistic Regression
wff.formula

WGCNA based fuzzy forest algorithm
wff

WGCNA based fuzzy forest algorithm
WGCNA_control

Set Parameters for WGCNA Step of Fuzzy Forests
print.fuzzy_forest

Print fuzzy_forest object. Prints output from fuzzy forests algorithm.
screen_control

Set Parameters for Screening Step of Fuzzy Forests
ff

Fuzzy forests algorithm
modplot

Plots relative importance of modules.
iterative_RF

Fits iterative random forest algorithm.
ctg

Cardiotocography Data Set
fuzzy_forest

Fuzzy Forest Object
example_ff

Fuzzy Forest Example
Liver_Expr

Liver Expression Data from Female Mice
ff.formula

Fuzzy forests algorithm
fuzzyforest

fuzzyforest: an implementation of the fuzzy forest algorithm in R.