Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Matplotlib update on CI makes example look different #8364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
amueller opened this issue Feb 15, 2017 · 24 comments
Closed

Matplotlib update on CI makes example look different #8364

amueller opened this issue Feb 15, 2017 · 24 comments
Labels
Documentation Easy Well-defined and straightforward way to resolve Sprint
Milestone

Comments

@amueller
Copy link
Member

The examples look different on the current dev website, in particular the classifier comparison that's on the landing pages looks a bit odd now:
http://scikit-learn.org/dev/auto_examples/classification/plot_classifier_comparison.html

I suspect the culprit is the CI upgrading to matplotlib v2. I think we should go through the examples and see how they are holding up with the new styles.

@amueller amueller added Documentation Easy Well-defined and straightforward way to resolve Need Contributor labels Feb 15, 2017
@amueller
Copy link
Member Author

amueller commented Feb 15, 2017

this one for example doesn't show support vectors any more because edgecolor is "none" by default now: http://scikit-learn.org/dev/auto_examples/svm/plot_separating_hyperplane.html#sphx-glr-auto-examples-svm-plot-separating-hyperplane-py

@rishikksh20
Copy link
Contributor

let me look at it.

@amueller
Copy link
Member Author

amueller commented Feb 15, 2017

the hyperplane example might also use a serving of make_classification or make_blobs or at least a different random state because one of the points looks like it's a supportvector but not marked (but it's probably not a support vector by epsilon). Also fill_between might be nicer than the dotted lines? But that's probably a question of taste. The capital Y should be lower case though.

@amueller
Copy link
Member Author

also that example should compute the margin as here: http://scikit-learn.org/dev/auto_examples/svm/plot_svm_margin.html#svm-margins-example I'm not sure the example is actually worth keeping with all of that ... seems redundant with the one I just linked to? but that one's also pretty broken on matplotlib v2

@amueller
Copy link
Member Author

@jakevdp uses countourf pretty nicely for the margins: https://github.com/jakevdp/PythonDataScienceHandbook/blob/master/notebooks/05.07-Support-Vector-Machines.ipynb we should probably do that for the svm examples

@NelleV
Copy link
Member

NelleV commented Feb 15, 2017

If you want to revert back to the old style it is possible, though I strongly recommend not to. Matplotlib 2.0 is so much nicer :D

@amueller
Copy link
Member Author

amueller commented Feb 15, 2017

I don't want to revert back, but many of the examples are now broken - because no-one bothered to check compatibility on our end :-/

@NelleV
Copy link
Member

NelleV commented Feb 15, 2017

Yeah… There are changes I did not expect to see as well… I wonder if some don't underline a couple of bugs.

@amueller
Copy link
Member Author

maybe someone should have looked at that at some point. I blame us ;)

@rishikksh20
Copy link
Contributor

rishikksh20 commented Feb 15, 2017

Getting following result for SVM example after modifying it for matplotlib v2.0 and using contour for plotting:
svm4

@amueller Is it ok ?

@rishikksh20
Copy link
Contributor

rishikksh20 commented Feb 16, 2017

Ok, After go through each and every example (compare examples visualization in between Dev and stable version). I findout that following examples are needed to modify (TODO) due to matplotlib v2.0 :

  • plot_separating_hyperplane.py
  • plot_svm_regression.py
  • plot_label_propogation_versus_svm_iris.py
  • plot_svm_nonlinear.py
  • plot_seperating_hyperplane_unbalanced.py
  • plot_custom_kernel.py
  • plot_weighted_samples.py
  • plot_svm_kernels.py
  • plot_iris.py (svm)
  • plot_svm_margin.py
  • plot_oneclass.py
  • plot_tree_regression.py
  • plot_tree_regression_multioutput.py
  • plot_iris.py (tree)
  • plot_mlp_alpha.py
  • plot_nearest_centroid.py
  • plot_classification.py
  • plot_lof.py
  • plot_underfitting_overfitting.py
  • plot_concentration_prior.py
  • plot_gmm_pdf.py
  • plot_manifold_sphere.py
  • plot_compare_method.py
  • plot_swissroll.py
  • plot_bayesian_ridge.py
  • plot_logistic_multinomial.py
  • plot_sgd_iris.py
  • plot_omp.py
  • plot_sgd_weighted_samples.py
  • plot_sgd_seperating_hyperplane.py
  • plot_gpr_noisy.py
  • plot_gpc.py
  • plot_gpr_prior_posterior.py
  • plot_gpc_iris.py
  • plot_gpc_xor.py
  • plot_permutation_test_for_classification.py
  • plot_feature_selection.py
  • plot_f_test_vs_mi.py
  • plot_iris_exercise.py
  • plot_forest_iris.py
  • plot_partial_dependence.py
  • plot_random_forest_embedding.py
  • plot_adaboost_twoclass.py
  • plot_voting_probas.py
  • plot_random_forest_regression_multioutput.py
  • plot_voting_decision_regions.py
  • plot_isolation_forest.py
  • plot_kernel_pca.py
  • plot_pca_iris.py
  • plot_random_dataset.py
  • plot_iris_dataset.py
  • plot_compare_cross_decomposition.py
  • plot_outlier_detection.py
  • plot_mahalanobis_distance.py
  • plot_kmeans_silhouette_analysis.py
  • plot_cluster_comparision.py
  • plot_birch_vs_minibatchkmeans.py
  • plot_segmentation_toy.py
  • plot_cluster_iris.py
  • plot_agglomerative_clustering.py
  • plot_ward_structured_vs_unstructured.py
  • plot_kmeans_assumptions.py
  • plot_lda_qda.py
  • plot_classification_probability.py
  • plot_calibration.py
  • plot_kernel_approximation.py
  • plot_kernel_ridge_regression.py
  • plot_johnson_lindenstrauss_bound.py
  • plot_multilabel.py
  • plot_cv_predict.py

I am working on all these example and hope to raise PRs within a week.

@amueller
Copy link
Member Author

amueller commented Mar 3, 2017

Mentioning the issue in each commit is kinda spammy ;)

Have you submitted PRs for all of the ones that need fixing? Is not, which ones are still available?

@rishikksh20
Copy link
Contributor

rishikksh20 commented Mar 4, 2017

@amueller I have submitted 4 to 5 PRs according to modules. Those files which are un-tick in my previous comment are available.

@alisonspencer
Copy link

I'll take a look at some of the examples that are still unchecked

@amueller
Copy link
Member Author

amueller commented Mar 4, 2017

@katelie please post which ones you're working on once you decided on it :)

nikitasingh981 pushed a commit to nikitasingh981/scikit-learn that referenced this issue Mar 4, 2017
* Modify plot_custom_kernel for matplotlib v2 comp

Add `edgecolors` attribute in scatter plot for better visualization
in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_oneclass.py for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_rbf_parameters for matplotlib v2

Add `edgecolors` attribute to scatter plot for
better visualization.

Issue: scikit-learn#8364

* Modify plot_separating_hyperplane_unbalanced for matplotlib v2

Add `edgecolors` attribute to scatter plot for better visualization.

Issue: scikit-learn#8364

* Modify plo_svm_kernels for matplotlib v2

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_margin for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_nonlinear for matplotlib v2

Add `edgecolors` attribute to scatter plot for matplotlib
version 2 compatibility

Issue: scikit-learn#8364

* Modify file for remove flake8 error

Remove extra white space.

Issue: scikit-learn#8364
@rishikksh20
Copy link
Contributor

@katelie All examples are arranged in modules in example's directory please take one module at a time and first checked the examples in the above list and then start working on them because I am also working this issue.

@amueller
Copy link
Member Author

amueller commented Mar 4, 2017

can someone please do http://scikit-learn.org/dev/auto_examples/classification/plot_classifier_comparison.html because it hurts my eyes on the frontpages ;) I'm not sure adding the marker edges is the right thing to do, it mostly looks odd because the reds seem to be different. But use your own judgment ;)

Sundrique pushed a commit to Sundrique/scikit-learn that referenced this issue Jun 14, 2017
* Modify plot_custom_kernel for matplotlib v2 comp

Add `edgecolors` attribute in scatter plot for better visualization
in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_oneclass.py for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_rbf_parameters for matplotlib v2

Add `edgecolors` attribute to scatter plot for
better visualization.

Issue: scikit-learn#8364

* Modify plot_separating_hyperplane_unbalanced for matplotlib v2

Add `edgecolors` attribute to scatter plot for better visualization.

Issue: scikit-learn#8364

* Modify plo_svm_kernels for matplotlib v2

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_margin for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_nonlinear for matplotlib v2

Add `edgecolors` attribute to scatter plot for matplotlib
version 2 compatibility

Issue: scikit-learn#8364

* Modify file for remove flake8 error

Remove extra white space.

Issue: scikit-learn#8364
amueller pushed a commit that referenced this issue Jun 19, 2017
* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: #8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: #8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: #8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: #8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:#8364
amueller pushed a commit that referenced this issue Jun 19, 2017
* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: #8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: #8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: #8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: #8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: #8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: #8364
@amueller
Copy link
Member Author

@amueller amueller added this to the 0.19 milestone Jul 13, 2017
dmohns pushed a commit to dmohns/scikit-learn that referenced this issue Aug 7, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
dmohns pushed a commit to dmohns/scikit-learn that referenced this issue Aug 7, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
dmohns pushed a commit to dmohns/scikit-learn that referenced this issue Aug 7, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
dmohns pushed a commit to dmohns/scikit-learn that referenced this issue Aug 7, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
NelleV pushed a commit to NelleV/scikit-learn that referenced this issue Aug 11, 2017
NelleV pushed a commit to NelleV/scikit-learn that referenced this issue Aug 11, 2017
* Modify plot_custom_kernel for matplotlib v2 comp

Add `edgecolors` attribute in scatter plot for better visualization
in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_oneclass.py for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_rbf_parameters for matplotlib v2

Add `edgecolors` attribute to scatter plot for
better visualization.

Issue: scikit-learn#8364

* Modify plot_separating_hyperplane_unbalanced for matplotlib v2

Add `edgecolors` attribute to scatter plot for better visualization.

Issue: scikit-learn#8364

* Modify plo_svm_kernels for matplotlib v2

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_margin for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_nonlinear for matplotlib v2

Add `edgecolors` attribute to scatter plot for matplotlib
version 2 compatibility

Issue: scikit-learn#8364

* Modify file for remove flake8 error

Remove extra white space.

Issue: scikit-learn#8364
NelleV pushed a commit to NelleV/scikit-learn that referenced this issue Aug 11, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
NelleV pushed a commit to NelleV/scikit-learn that referenced this issue Aug 11, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
@qinhanmin2014
Copy link
Member

@amueller I updated plot_iris.html in #9541. Could you please have a look at it. Thanks:)

paulha pushed a commit to paulha/scikit-learn that referenced this issue Aug 19, 2017
paulha pushed a commit to paulha/scikit-learn that referenced this issue Aug 19, 2017
* Modify plot_custom_kernel for matplotlib v2 comp

Add `edgecolors` attribute in scatter plot for better visualization
in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_oneclass.py for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_rbf_parameters for matplotlib v2

Add `edgecolors` attribute to scatter plot for
better visualization.

Issue: scikit-learn#8364

* Modify plot_separating_hyperplane_unbalanced for matplotlib v2

Add `edgecolors` attribute to scatter plot for better visualization.

Issue: scikit-learn#8364

* Modify plo_svm_kernels for matplotlib v2

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_margin for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_nonlinear for matplotlib v2

Add `edgecolors` attribute to scatter plot for matplotlib
version 2 compatibility

Issue: scikit-learn#8364

* Modify file for remove flake8 error

Remove extra white space.

Issue: scikit-learn#8364
paulha pushed a commit to paulha/scikit-learn that referenced this issue Aug 19, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
paulha pushed a commit to paulha/scikit-learn that referenced this issue Aug 19, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
@amueller
Copy link
Member Author

I think these are all done now.

AishwaryaRK pushed a commit to AishwaryaRK/scikit-learn that referenced this issue Aug 29, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
AishwaryaRK pushed a commit to AishwaryaRK/scikit-learn that referenced this issue Aug 29, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
maskani-moh pushed a commit to maskani-moh/scikit-learn that referenced this issue Nov 15, 2017
maskani-moh pushed a commit to maskani-moh/scikit-learn that referenced this issue Nov 15, 2017
* Modify plot_custom_kernel for matplotlib v2 comp

Add `edgecolors` attribute in scatter plot for better visualization
in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_oneclass.py for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization in matplotlib version 2

Issue: scikit-learn#8364

* Modify plot_rbf_parameters for matplotlib v2

Add `edgecolors` attribute to scatter plot for
better visualization.

Issue: scikit-learn#8364

* Modify plot_separating_hyperplane_unbalanced for matplotlib v2

Add `edgecolors` attribute to scatter plot for better visualization.

Issue: scikit-learn#8364

* Modify plo_svm_kernels for matplotlib v2

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_margin for matplotlib v2 comp

Add `edgecolors` attribute to scatter plot for better
visualization.

Issue: scikit-learn#8364

* Modify plot_svm_nonlinear for matplotlib v2

Add `edgecolors` attribute to scatter plot for matplotlib
version 2 compatibility

Issue: scikit-learn#8364

* Modify file for remove flake8 error

Remove extra white space.

Issue: scikit-learn#8364
maskani-moh pushed a commit to maskani-moh/scikit-learn that referenced this issue Nov 15, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
maskani-moh pushed a commit to maskani-moh/scikit-learn that referenced this issue Nov 15, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
jwjohnson314 pushed a commit to jwjohnson314/scikit-learn that referenced this issue Dec 18, 2017
…8413)

* Modify plot_cv_predict.py for matplotlib v2 comp

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_multilabel.py for matplotlib v2

Add `edgecolors` in scatterr plot for matplotlib v2.

Issue: scikit-learn#8364

* Modify plot_kernel_ridge_regression for matplotlib v2

Add `edgecolors` in scatter plot and `makeredgecolor`
in plot.
Issue: scikit-learn#8364

* Modify plot_kernel_approximation.py for matplotlib v2

Add `edgecolors` in scatter plot for matplotlib v2.

Issue: scikit-learn#8364

* Change plot_kernel_ridge_regression for better plot

Remove `markeredgecolor` for better plot.

Issue:scikit-learn#8364
jwjohnson314 pushed a commit to jwjohnson314/scikit-learn that referenced this issue Dec 18, 2017
…it-learn#8394)

* Modify plot_gpc_xor.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for matplotlib v2 comp

Add edgecolors option in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpr_prior_posterior for matplotlibv2

Add edgecolors attribute in scatter plot

Issue: scikit-learn#8364

* Modify plot_gpc.py for matplotlib v2 comp

Add edgecolors attribute in scatter plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py to remove flake8 error

Modify file to pass travis build

* Cosmetic change in plot_gpr_prior_posterior

Reduce `alpha` for better plot.

Issue: scikit-learn#8364

* Modify plot_gpr_noisy.py for better visualization

Modify colorbar in contour plot.

Issue: scikit-learn#8364
lemonlaug pushed a commit to lemonlaug/scikit-learn that referenced this issue Jan 6, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Documentation Easy Well-defined and straightforward way to resolve Sprint
Projects
None yet
Development

No branches or pull requests

5 participants