Learn R Programming

shapviz (version 0.9.7)

c.shapviz: Concatenates "shapviz" Objects

Description

This function combines two or more (usually named) "shapviz" objects to an object of class "mshapviz".

Usage

# S3 method for shapviz
c(...)

Value

A "mshapviz" object.

Arguments

...

Any number of (optionally named) "shapviz" objects.

See Also

mshapviz()

Examples

Run this code
S <- matrix(c(1, -1, -1, 1), ncol = 2, dimnames = list(NULL, c("x", "y")))
X <- data.frame(x = c("a", "b"), y = c(100, 10))
s1 <- shapviz(S, X, baseline = 4)[1]
s2 <- shapviz(S, X, baseline = 4)[2]
s <- c(shp1 = s1, shp2 = s2)
s

Run the code above in your browser using DataLab