mew argument in plotting routine

This commit is contained in:
Max Zwiessele 2013-05-22 15:25:22 +01:00
parent db58239063
commit 9a8caa70fb

View file

@ -119,7 +119,7 @@ class GPLVM(GP):
else: else:
x = self.X[index,input_1] x = self.X[index,input_1]
y = self.X[index,input_2] y = self.X[index,input_2]
ax.scatter(x, y, marker=m, s=s, color=util.plot.Tango.nextMedium(), mew=1.3, label=this_label) ax.scatter(x, y, marker=m, s=s, color=util.plot.Tango.nextMedium(), label=this_label)
ax.set_xlabel('latent dimension %i'%input_1) ax.set_xlabel('latent dimension %i'%input_1)
ax.set_ylabel('latent dimension %i'%input_2) ax.set_ylabel('latent dimension %i'%input_2)