From d115e61b8d7b23d36429238df552d8abba099ca9 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Tue, 28 Jan 2014 13:47:59 +0000 Subject: [PATCH] typo corrected --- GPy/core/svigp.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/GPy/core/svigp.py b/GPy/core/svigp.py index d54d3453..9e4f3b12 100644 --- a/GPy/core/svigp.py +++ b/GPy/core/svigp.py @@ -481,17 +481,17 @@ class SVIGP(GP): 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." - from ..plotting.matplot_dep import svgi_plots - svgi_plots.plot(self,*args,**kwargs) + from ..plotting.matplot_dep import svig_plots + svig_plots.plot(self,*args,**kwargs) 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." - from ..plotting.matplot_dep import svgi_plots - svgi_plots.plot_traces(self) + from ..plotting.matplot_dep import svig_plots + svig_plots.plot_traces(self)