Skip to contents

Check if there are fuzzy sets. A fuzzy set is a set where the relationship between elements is given by a probability (or uncertainty).

Usage

is.fuzzy(object)

# S4 method for class 'TidySet'
is.fuzzy(object)

Arguments

object

Object to be coerced or tested.

Value

A logical value.

Methods (by class)

  • is.fuzzy(TidySet): Check if it is fuzzy

Examples

TS <- tidySet(list(A = letters[1:5], B = letters[2:10]))
is.fuzzy(TS)
#> [1] FALSE