[testing] BGPLVM

This commit is contained in:
mzwiessele 2015-10-06 14:48:52 +01:00
parent 298893d65f
commit 116ad8762c
6 changed files with 62 additions and 32 deletions

View file

@ -82,7 +82,9 @@ class MatplotlibPlots(AbstractPlottingLibrary):
return ax.scatter(X, Y, c=color, zs=Z, label=label, marker=marker, **kwargs)
return ax.scatter(X, Y, c=color, label=label, marker=marker, **kwargs)
def plot(self, ax, X, Y, color=None, label=None, **kwargs):
def plot(self, ax, X, Y, Z=None, color=None, label=None, **kwargs):
if Z is not None:
return ax.plot(X, Y, color=color, zs=Z, label=label, **kwargs)
return ax.plot(X, Y, color=color, label=label, **kwargs)
def plot_axis_lines(self, ax, X, color=Tango.colorsHex['mediumBlue'], label=None, **kwargs):