summaryrefslogtreecommitdiff
path: root/examples/plot_fgw.py
diff options
context:
space:
mode:
authorAlexandre Gramfort <alexandre.gramfort@m4x.org>2020-04-23 10:58:13 +0200
committerAlexandre Gramfort <alexandre.gramfort@m4x.org>2020-04-23 10:58:13 +0200
commitee9d233302cbe007a87563ac468f53a6d0c346a4 (patch)
treeacfa9b7570c69897fbc08efdd649f66ae045933c /examples/plot_fgw.py
parent73db416784c400eccb5cdea0b3a00ac4bd68c595 (diff)
parent8ca4d301b8110d02acc18c51e3ecd1de0c87049b (diff)
Merge branch 'rm_travis' of github.com:agramfort/POT into rm_travis
Diffstat (limited to 'examples/plot_fgw.py')
-rw-r--r--examples/plot_fgw.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/plot_fgw.py b/examples/plot_fgw.py
index 43efc94..cfdc33b 100644
--- a/examples/plot_fgw.py
+++ b/examples/plot_fgw.py
@@ -60,14 +60,14 @@ pl.subplot(2, 1, 1)
pl.scatter(ys, xs, c=phi, s=70)
pl.ylabel('Feature value a', fontsize=20)
-pl.title('$\mu=\sum_i \delta_{x_i,a_i}$', fontsize=25, usetex=True, y=1)
+pl.title('$\mu=\sum_i \delta_{x_i,a_i}$', fontsize=25, y=1)
pl.xticks(())
pl.yticks(())
pl.subplot(2, 1, 2)
pl.scatter(yt, xt, c=phi2, s=70)
pl.xlabel('coordinates x/y', fontsize=25)
pl.ylabel('Feature value b', fontsize=20)
-pl.title('$\\nu=\sum_j \delta_{y_j,b_j}$', fontsize=25, usetex=True, y=1)
+pl.title('$\\nu=\sum_j \delta_{y_j,b_j}$', fontsize=25, y=1)
pl.yticks(())
pl.tight_layout()
pl.show()