Yellowbrick is a Python library that extends the scikit-learn API to provide visual analysis tools. It doesn't replace scikit-learn; it wraps around it. It allows you to visualize the entire machine learning workflow—from data selection to model evaluation—using a familiar, code-efficient syntax.
If you know how to use scikit-learn, you already know how to use Yellowbrick. It follows the fit() , transform() , and predict() paradigm. yellowbrick tool
Yellowbrick provides a comprehensive suite of tools categorized by the stage of the machine learning pipeline. 1. Feature Analysis Yellowbrick is a Python library that extends the