mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-05 17:52:39 +02:00
[testing] BGPLVM
This commit is contained in:
parent
298893d65f
commit
116ad8762c
6 changed files with 62 additions and 32 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue