summaryrefslogtreecommitdiff
path: root/docs/source/auto_examples/plot_otda_classes.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2018-05-30 09:58:51 +0200
committerRémi Flamary <remi.flamary@gmail.com>2018-05-30 09:58:51 +0200
commitb5e45bbc83fd8cd8c1634a78f2f983d1cf28af73 (patch)
tree965b01f0313ff5ac2c2013239adda48f767ba992 /docs/source/auto_examples/plot_otda_classes.py
parent90e42f32bdf0dd06667edaf172c51f4d4fce2c8b (diff)
update examples and notebooks
Diffstat (limited to 'docs/source/auto_examples/plot_otda_classes.py')
-rw-r--r--docs/source/auto_examples/plot_otda_classes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/auto_examples/plot_otda_classes.py b/docs/source/auto_examples/plot_otda_classes.py
index b14c11a..c311fbd 100644
--- a/docs/source/auto_examples/plot_otda_classes.py
+++ b/docs/source/auto_examples/plot_otda_classes.py
@@ -25,8 +25,8 @@ import ot
n_source_samples = 150
n_target_samples = 150
-Xs, ys = ot.datasets.get_data_classif('3gauss', n_source_samples)
-Xt, yt = ot.datasets.get_data_classif('3gauss2', n_target_samples)
+Xs, ys = ot.datasets.make_data_classif('3gauss', n_source_samples)
+Xt, yt = ot.datasets.make_data_classif('3gauss2', n_target_samples)
##############################################################################
@@ -82,7 +82,7 @@ pl.tight_layout()
# Fig 2 : plot optimal couplings and transported samples
# ------------------------------------------------------
-param_img = {'interpolation': 'nearest', 'cmap': 'spectral'}
+param_img = {'interpolation': 'nearest'}
pl.figure(2, figsize=(15, 8))
pl.subplot(2, 4, 1)