IC_Meng_2012
IC_Meng_2012(
dag,
correct = FALSE,
use_cache = simona_opt$use_cache,
verbose = simona_opt$verbose
)
It has a complex form which takes account of the term depth and the downstream of the term. The first factor is calculated as:
= log(depth)/long(max_depth) f1
The second factor is calculated as:
= 1 - log(1 + sum_{x => t's offspring}(1/depth_x))/log(total_terms) f1
In the equation, the summation goes over t
's offspring terms.
The final information content is the multiplication of f1
and f2
:
= f1 * f2 IC
Paper link: http://article.nadiapub.com/IJGDC/vol5_no3/6.pdf.
There is one parameter correct
. If it is set to TRUE
, the first factor f1
is calculated as:
= log(depth + 1)/long(max_depth + 1) f1
correct
can be set as:
term_IC(dag, method = "IC_Meng_2012", control = list(correct = TRUE))