Learn R Programming

shapviz (version 0.9.5)

dimnames.shapviz: Dimnames of "shapviz" Object

Description

This implies to use colnames(x) to get the column names of the SHAP and feature matrix (and optional SHAP interaction values).

Usage

# S3 method for shapviz
dimnames(x)

Value

Dimnames of the SHAP matrix.

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, baseline = 4)
dimnames(x)
colnames(x)

Run the code above in your browser using DataLab