line 174, in force raise NotImplementedError("matplotlib = True is not yet supported for force plots with multiple samples!") NotImplementedError: matplotlib = True is not yet supported for force plots with multiple samples!
时间: 2024-03-31 19:35:27 浏览: 301
ValueError: Format ‘jpg’ is not supported (supported formats: eps, pdf, pgf, png, ps, raw, rgba, svg
这段代码的意思是调用`force_plot`函数时,如果`matplotlib`参数设置为`True`,但同时有多个样本,则会抛出`NotImplementedError`异常。目前还不支持同时在多个样本上使用`matplotlib`参数进行可视化。建议将`matplotlib`参数设置为`False`,以便在多个样本上使用`force_plot`函数。
阅读全文