+.shapviz | R Documentation |
Rowbinds two "shapviz" objects using +
.
## S3 method for class 'shapviz'
e1 + e2
## S3 method for class 'mshapviz'
e1 + e2
e1 |
The first object of class "shapviz". |
e2 |
The second object of class "shapviz". |
A new object of class "shapviz".
shapviz()
, rbind.shapviz()
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 <- s1 + s2
s
# mshapviz
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)[1L]
s2 <- shapviz(S, X, baseline = 4)[2L]
s <- mshapviz(c(shp1 = s1, shp2 = s2))
s + s
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.