I built a classifier with a Tabular dataset.I tried to use
FeatureImpactPlot[c]
but I get the following errors:
DistributionChart::ldata: <<1>> is not a valid dataset or list of datasets. Part::partw
Does it mean that FeatureImpactPlot cannot work with Tabular datasets?
Hi Dalila, I cannot reproduce the error you see with this simple example
data = ResourceData["Sample Data: Fisher's Irises"]; c = Classify[data -> "Species"] FeatureImpactPlot[c]
Can you share a sample of the data you are using?