Skip to contents

Helper function to join the feature-level QCA and XGboost metrics

Usage

joinMetrics(featureMetric, qcaMetric)

Arguments

featureMetric

dataframe, result from the `getQCAMetric()`

qcaMetric

dataframe, result from the `getFeatureImp()`

Value

dataframe, combined dataframe of feature-level importance

Examples

if (FALSE) { # \dontrun{
fDf <- getFeatureImp(xgb, voteData, "vote")
qDf <- getQCAMetric(voteDataCalibrated, "vote")
joinDf <- joinMetrics(fDf, qDf)
} # }