summaryrefslogtreecommitdiff
path: root/examples/plot_fgw.py
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2020-04-23 10:53:19 +0200
committerGitHub <noreply@github.com>2020-04-23 10:53:19 +0200
commit8ca4d301b8110d02acc18c51e3ecd1de0c87049b (patch)
tree49f9df24449de6ec874d73ed65ad7c851669e83a /examples/plot_fgw.py
parentf9638166521a1160838fae75e2a2e318d645460e (diff)
parentbacb0b992aa4e1ba7e5fd0beb0bf9617c801f833 (diff)
Merge branch 'master' 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()