Skip to contents

Assuming that the fuzzy values are probabilities, calculates the probability of being of different sizes for a given set.

Usage

set_size(object, sets = NULL)

# S4 method for class 'TidySet'
set_size(object, sets = NULL)

Arguments

object

A TidySet object.

sets

The sets from which the length is calculated.

Value

A list with the size of the set or the probability of having that size.

Methods (by class)

  • set_size(TidySet): Calculates the size of a set using length_set()

Examples

relations <- data.frame(
    sets = c(rep("A", 5), "B", "C"),
    elements = c(letters[seq_len(6)], letters[6]),
    fuzzy = runif(7)
)
a <- tidySet(relations)
set_size(a)
#>    sets size probability
#> 1     A    0 0.001986152
#> 2     A    1 0.151040293
#> 3     A    2 0.429573109
#> 4     A    3 0.351379611
#> 5     A    4 0.063502987
#> 6     A    5 0.002517848
#> 7     B    0 0.874210773
#> 8     B    1 0.125789227
#> 9     C    0 0.036818246
#> 10    C    1 0.963181754