summary.IMEC: Summary of an IMEC object.

View source: R/main.R View source: R/main - work_in_progress.R

summary.IMECR Documentation

Summary of an IMEC object.

Description

Summary of an IMEC object.

Usage

## S3 method for class 'IMEC'
summary(object, ...)

Arguments

object

IMEC object.

...

other parameters passed on from S3 method.

Examples

# simple example comparing two hypotheses one of them with more explanatory breadth##
T1 <- c("H1", "H2")
Phenomena <- c("E1", "E2")
Thresholds <- c(2,2)
explanations <- initializeNetwork(Phenomena, T1)
explanations <- explain("H1", "E1", explanations)
explanations <- explain("H1", "E2", explanations)
explanations <- explain("H2", "E2", explanations)
explanations <- contradict("H1", "H2", explanations)
coherence <- computeIMEC(explanations, Thresholds, Phenomena, T1)
summary(coherence)
plot(coherence)

MaxMaier42/IMEC documentation built on Oct. 30, 2022, 2:28 a.m.