Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 613 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 613 Bytes

HOFS

Higher Order Mutual Information Approximation for Feature Selection.

Installation

You can install the released version of HOFS from GitHub with:

library(remotes)
install_github("KrzyGajow/HOFS")

Example

This is a basic example which shows you how to solve a common problem:

library("HOFS")
data(iris)
Results <- HOFS( data = iris[ , -5 ], label = iris[ , 5, drop = F ], Nfeatures = 4 )

# Run Shiny web application 
runShinyHOFS()