Verify if the input data are consolidate, i.e., if there are events with 0 or 1 probability or indistinguishable in terms of observations

consolidate.data(x, print = FALSE)

Arguments

x

A TRONCO compliant dataset.

print

A boolean value stating whether to print of not the summary

Value

The list of any 0 probability, 1 probability and indistinguishable.

Examples

data(test_dataset)
consolidate.data(test_dataset)
#> $indistinguishable
#> list()
#> 
#> $zeroes
#> list()
#> 
#> $ones
#> list()
#>