Learn R Programming

shapviz (version 0.9.7)

dim.shapviz: Dimensions of "shapviz" Object

Description

Dimensions of "shapviz" Object

Usage

# S3 method for shapviz
dim(x)

Value

A numeric vector of length two providing the number of rows and columns of the SHAP matrix stored in x.

Arguments

x

An object of class "shapviz".

See Also

shapviz()

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))
x <- shapviz(S, X)
dim(x)
nrow(x)
ncol(x)

Run the code above in your browser using DataLab