powered by
Retrieve the column names of a slots of a TidySet.
# S3 method for TidySet names(x)
A vector with the names of the present columns of the sets, elements and relations. If a slot is active it only returns the names of that slot.
A TidySet object.
dimnames()
relations <- data.frame( sets = c(rep("a", 5), "b"), elements = letters[seq_len(6)], fuzzy = runif(6) ) TS <- tidySet(relations) names(TS) names(activate(TS, "sets"))
Run the code above in your browser using DataLab