Learn R Programming

BaseSet (version 0.9.0)

c,TidySet-method: Combine Values into a Vector or List

Description

This method combines TidySets. It only works if the first element is a TidySet.

Usage

# S4 method for TidySet
c(x, ...)

Arguments

x

A TidySet object.

...

Objects to be concatenated. All NULL entries are dropped.

Examples

Run this code
TS <- tidySet(list(A = letters[1:5], B = letters[6]))
TS2 <- c(TS, data.frame(sets = "C", elements = "gg"))

Run the code above in your browser using DataLab