typo corrected

This commit is contained in:
Ricardo 2014-01-28 13:47:59 +00:00
parent 1ab26de56e
commit d115e61b8d

View file

@ -481,17 +481,17 @@ class SVIGP(GP):
def plot(self, *args, **kwargs): def plot(self, *args, **kwargs):
""" """
See GPy.plotting.matplot_dep.svgi_plots.plot See GPy.plotting.matplot_dep.svig_plots.plot
""" """
assert "matplotlib" in sys.modules, "matplotlib package has not been imported." assert "matplotlib" in sys.modules, "matplotlib package has not been imported."
from ..plotting.matplot_dep import svgi_plots from ..plotting.matplot_dep import svig_plots
svgi_plots.plot(self,*args,**kwargs) svig_plots.plot(self,*args,**kwargs)
def plot_traces(self): def plot_traces(self):
""" """
See GPy.plotting.matplot_dep.svgi_plots.plot_traces See GPy.plotting.matplot_dep.svig_plots.plot_traces
""" """
assert "matplotlib" in sys.modules, "matplotlib package has not been imported." assert "matplotlib" in sys.modules, "matplotlib package has not been imported."
from ..plotting.matplot_dep import svgi_plots from ..plotting.matplot_dep import svig_plots
svgi_plots.plot_traces(self) svig_plots.plot_traces(self)