24a649d72e3f7e440d5a8ac73f1aaa1f4c8fecb3,yellowbrick/text/freqdist.py,,freqdist,#,33

Before Change


    // Fit and transform the visualizer (calls draw)
    visualizer.fit(X, y, **kwargs)
    visualizer.transform(X)
    visualizer.finalize()

    // Return the visualizer object
    return visualizer

After Change


        Returns the fitted, finalized visualizer
    
    // Instantiate the visualizer
    viz = FreqDistVisualizer(features, ax=ax, n=n, orient=orient, color=color, **kwargs)

    // Fit and transform the visualizer (calls draw)
    viz.fit(X, y, **kwargs)
    viz.transform(X)

    // Draw the final visualization
    if show:
        viz.show()
    else:
        viz.finalize()

    // Return the visualizer object
    return viz


class FrequencyVisualizer(TextVisualizer):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 5

Instances


Project Name: DistrictDataLabs/yellowbrick
Commit Name: 24a649d72e3f7e440d5a8ac73f1aaa1f4c8fecb3
Time: 2020-02-08
Author: lwgray@gmail.com
File Name: yellowbrick/text/freqdist.py
Class Name:
Method Name: freqdist


Project Name: DistrictDataLabs/yellowbrick
Commit Name: c68df783deee8bf210f7e33f80f9ab2c46d3108c
Time: 2020-02-08
Author: lwgray@gmail.com
File Name: yellowbrick/classifier/class_prediction_error.py
Class Name:
Method Name: class_prediction_error


Project Name: DistrictDataLabs/yellowbrick
Commit Name: 942360a1699d835c37c2b11c1deebcdc1161e5c4
Time: 2020-02-07
Author: benjamin@bengfort.com
File Name: yellowbrick/regressor/residuals.py
Class Name:
Method Name: residuals_plot


Project Name: DistrictDataLabs/yellowbrick
Commit Name: e1ea0af877c132970c4b0940ced419f8b16998a5
Time: 2020-02-08
Author: 40185521+mchestnut91@users.noreply.github.com
File Name: yellowbrick/target/feature_correlation.py
Class Name:
Method Name: feature_correlation