Usage
iBBiG(binaryMatrix, nModules, alpha = 0.3, pop_size = 100, mutation = 0.08, stagnation = 50, selection_pressure = 1.2, max_sp = 15, success_ratio = 0.6)
Arguments
binaryMatrix
Matrix. A binary or logical matrix.
nModules
Numeric. The number of expected modules. As iBBiG is optimized to find a miminal number, nModules can be a larger than expected value
alpha
Numeric, weighting factor, that will balances the tradeoff between specificity and sensitivity. Default 0.3. Simulated studies indicate range 0.3-0.5 is appropriate
pop_size
Numeric. Default 100. Population size establishes the genetic diversity of solutions in Genetic Algorithm. Simulated studies show that it has marginal effect on performance.
mutation
Numeric. Default 0.08. Mutation rate of GA. Simulated studies show that it has little effect on performance.
stagnation
Numeric. Default is stop criterion of 50 iterations of stagnation. Simulated studies show that it has little effect on performance.
selection_pressure
Numeric. Default is 1.2. Selection pressure for parent selection. Simulated studies show that it has little effect on performance
max_sp
Numeric. Default is 15. Simulated studies show that it has little effect on performance
success_ratio
Numeric. Deafult 0.6. Success ratio determines how many children have to outperform at least one of their parents. Simulated studies show that it has little effect on performance