Closed mayer79 closed 1 year ago
I am proposing to remove the ks_extract() function. It allows to extract objects like S from a kernelshap object x. However, the usual extractors x$S or x[["S"]] will suffice.
ks_extract()
S
x
x$S
x[["S"]]
Implemented in https://github.com/ModelOriented/kernelshap/pull/74
I am proposing to remove the
ks_extract()
function. It allows to extract objects likeS
from a kernelshap objectx
. However, the usual extractorsx$S
orx[["S"]]
will suffice.