-
- Downloads
[MRG+1] Fix: Replace pylab with matplotlib.pyplot #6754 (#6762)
* Fix: Replace pylab with matplotlib.pyplot #6754 - one instance of 22 occurrences of pylab replaced with matplotlib.pyplot - bench_glm.py now free of pylab references - code executes properly * Fix: Replace pylab with matplotlib.pyplot #6754 - one instance of 21 remaining occurrences of pylab replaced with matplotlib.pyplot - bench_glmnet.py now free of pylab references - code does not execute for extraneous reason: ImportError: No module named glmnet.elastic_net * Fix: Replace pylab with matplotlib.pyplot #6754 - one instance of 19 occurrences of pylab replaced with matplotlib.pyplot - bench_lasso.py now free of pylab references - code executes properly * Fix: Replace pylab with matplotlib.pyplot #6754 - one instance of 18 occurrences of pylab replaced with matplotlib.pyplot - bench_plot_neighbors.py now free of pylab references - code executes properly * Fix: Replace pylab with matplotlib.pyplot #6754 - one instance of 17 occurrences of pylab replaced with matplotlib.pyplot - bench_plot_omp_lars.py now free of pylab references - code does not execute for extraneous reasons: - File "bench_plot_omp_lars.py", line 111, in <module> - ax = fig.add_subplot(1, 2, i) - ValueError: num must be 1 <= num <= 2, not 0 - line 111 should probably be ax = fig.add_subplot(1, 2, i+1) * Fix: Replace pylab with matplotlib.pyplot #6754 - bench_plot_parallel_pairwise.py now free of pylab references - code executes properly * Fix: Replace pylab with matplotlib.pyplot #6754 - bench_plot_ward.py now free of pylab references - code executes properly * Fix: Replace pylab with matplotlib.pyplot #6754 - bench_sgd_regression.py now free of pylab references - code executes properly * Fix: Replace pylab with matplotlib.pyplot #6754 - bench_tree.py now free of pylab references - code executes properly * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_glm.py clean * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_glm.py clean of pl - code does not execute for extraneous reasons * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_lasso.py clean of pl - code executes properly * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_plot_neighbors.py clean of pl - code executes properly * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_plot_omp_lars.py clean of pl - code does not execute for extraneous reasons * fix: Fix bug that prevented graphs from displaying * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_plot_parallel_pairwise.py clean of pl - code executes properly * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_plot_ward.py clean of pl - code executes properly * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_sgd_regression.py clean of pl - code executes properly * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - bench_tree.py clean of pl - code executes properly * docs: removed pylab references from comments * docs: removed all pylab references - replaced with matplotlib.pyplot - pl --> plt * docs: removed pylab references from comments - replaced with matplotlib.pyplot - pl --> plt * docs: removed all pylab references - replaced with matplotlib.pyplot - pl --> plt * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - mlcomp_sparse_document_classification.py clean of pl * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - plot_gpr_noisy_targets.py clean of pl - code does not execute for extraneous reasons - File "examples/gaussian_process/plot_gpr_noisy_targets.py", line 31, in <module> - from sklearn.gaussian_process import GaussianProcessRegressor - ImportError: cannot import name GaussianProcessRegressor * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - plot_gpc_isoprobability.py clean of pl - code does not execute for extraneous reasons - File "examples/gaussian_process/plot_gpc_isoprobability.py", line 24, in <module> - from sklearn.gaussian_process import GaussianProcessClassifier - ImportError: cannot import name GaussianProcessClassifier * docs: removed all pylab references - replaced with matplotlib.pyplot - pl --> plt * docs: removed all pylab references - replaced with matplotlib.pyplot * refactor: Replace pl with plt - replace instances of pl (as on import pylab as pl) with plt (as in import matplotlib.pyplot as plt) - plot_sparse_coding.py clean of pl - code executes properly * docs: removed all pylab references - replaced with matplotlib.pyplot * docs: removed all pylab references - replaced with matplotlib.pyplot * style: Indent properly * style: indent properly * style: Indent properly * docs: Add missing .pyplot * docs: Fix typo * style: Indent properly
Showing
- benchmarks/bench_glm.py 10 additions, 10 deletionsbenchmarks/bench_glm.py
- benchmarks/bench_glmnet.py 19 additions, 19 deletionsbenchmarks/bench_glmnet.py
- benchmarks/bench_lasso.py 20 additions, 19 deletionsbenchmarks/bench_lasso.py
- benchmarks/bench_plot_neighbors.py 24 additions, 24 deletionsbenchmarks/bench_plot_neighbors.py
- benchmarks/bench_plot_omp_lars.py 12 additions, 12 deletionsbenchmarks/bench_plot_omp_lars.py
- benchmarks/bench_plot_parallel_pairwise.py 9 additions, 9 deletionsbenchmarks/bench_plot_parallel_pairwise.py
- benchmarks/bench_plot_ward.py 11 additions, 11 deletionsbenchmarks/bench_plot_ward.py
- benchmarks/bench_sgd_regression.py 31 additions, 31 deletionsbenchmarks/bench_sgd_regression.py
- benchmarks/bench_tree.py 18 additions, 18 deletionsbenchmarks/bench_tree.py
- doc/datasets/index.rst 1 addition, 1 deletiondoc/datasets/index.rst
- doc/tutorial/statistical_inference/settings.rst 3 additions, 4 deletionsdoc/tutorial/statistical_inference/settings.rst
- doc/tutorial/statistical_inference/supervised_learning.rst 7 additions, 7 deletionsdoc/tutorial/statistical_inference/supervised_learning.rst
- doc/tutorial/text_analytics/skeletons/exercise_01_language_train_model.py 3 additions, 3 deletions...t_analytics/skeletons/exercise_01_language_train_model.py
- doc/tutorial/text_analytics/solutions/exercise_01_language_train_model.py 3 additions, 3 deletions...t_analytics/solutions/exercise_01_language_train_model.py
- examples/classification/plot_digits_classification.py 1 addition, 1 deletionexamples/classification/plot_digits_classification.py
- examples/decomposition/plot_sparse_coding.py 1 addition, 1 deletionexamples/decomposition/plot_sparse_coding.py
- examples/gaussian_process/plot_gpc_isoprobability.py 24 additions, 24 deletionsexamples/gaussian_process/plot_gpc_isoprobability.py
- examples/gaussian_process/plot_gpr_noisy_targets.py 27 additions, 27 deletionsexamples/gaussian_process/plot_gpr_noisy_targets.py
- examples/text/mlcomp_sparse_document_classification.py 1 addition, 1 deletionexamples/text/mlcomp_sparse_document_classification.py
- sklearn/datasets/base.py 4 additions, 4 deletionssklearn/datasets/base.py
Loading
Please register or sign in to comment