Nothing
# build the averaged network structure using arc strengths and a
# significance threshold.
averaged.network = function(strength, threshold) {
# check the main argument.
check.bn.strength(strength, valid = c("bootstrap", "bayes-factor"))
# check the strength threshold.
threshold = check.threshold(threshold, strength)
avg = averaged.network.backend(strength = strength, threshold = threshold)
# add the metadata for the print() method.
avg$learning$algo = "averaged"
avg$learning$args = list(threshold = threshold)
return(avg)
}#AVERAGED.NETWORK
# compute the inclusion threshold from a set of arc strengths.
inclusion.threshold = function(strength) {
# check the (only) argument.
check.bn.strength(strength, valid = c("bootstrap", "bayes-factor"))
threshold(strength = strength, method = "l1")
}#INCLUSION.THRESHOLD
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.