yellowbrick icon indicating copy to clipboard operation
yellowbrick copied to clipboard

Visual analysis and diagnostic tools to facilitate machine learning model selection.

Results 116 yellowbrick issues
Sort by recently updated
recently updated
newest added

When you use tree-based models, a common approach is to investigate the feature importance induced by the splits of the trees. * Example: http://scikit-learn.org/stable/auto_examples/ensemble/plot_forest_importances.html * Make a barplot to show...

type: feature
level: novice

Rank 1D is an analysis of a single feature; usually by inspecting a histogram. Rankings of features are conducted though a metric that takes a single feature and returns a...

type: feature
level: intermediate

The Rank2D visualizer is a feature analysis visualizer that ranks pairwise joint plots of feature columns together (similar to a SPLOM) using a metric in the space [-1, 1] or...

type: feature
level: expert

Implement an error surface/topology plot for [MultiModelMixin](https://github.com/DistrictDataLabs/yellowbrick/blob/master/yellowbrick/base.py#L251) Visualizer to enable users to visualize how the optimization is working.

type: feature
level: intermediate

The `Dataset.to_numpy` and `Dataset.to_pandas` methods both return `X` and `y` data for use in machine learning. Currently, all of our datasets are supervised (e.g. they have `y` data; however if...

type: bug
type: technical debt

Both `RadViz` and `ParallelCoordinates` would benefit from increased whitespace/increased transparency that is achieved simply by recording the columns around the circle in `RadViz` and along the horizontal in `ParallelCoordinates`. Potentially...

type: feature
priority: low
level: intermediate

As a follow-on to #106, refine the preliminary implementation of the `FreqDistVisualizer` as follows: Things that we should do or consider doing in a future implementation: - per-class distribution plots,...

type: feature
priority: low
level: intermediate

**Describe the issue** A clear and concise description of what the issue is. Since adding 'support' feature, there is a fairly big jump in tolerance required for classification reports to...

type: technical debt
level: expert

In keeping with Scikit-Learn, let's change arguments called `features` to `labels`. Need to consider backward compatibility. This is mostly in the feature visualizers. **EDIT**: More clarifications after a very thorough...

priority: low
type: technical debt
level: novice

Is there a way to effectively visualize word collocations from a corpus? In other words, a way to visually depict prominent or interesting n-grams? NLTK exposes [several methods](http://www.nltk.org/howto/collocations.html) for identifying...

type: question