From 2ed92d75237567f07e68785225a8d0acf256c554 Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Sun, 4 Oct 2015 00:05:58 +0100 Subject: [PATCH] Update __init__.py --- GPy/plotting/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/GPy/plotting/__init__.py b/GPy/plotting/__init__.py index e3700b18..74fccfb0 100644 --- a/GPy/plotting/__init__.py +++ b/GPy/plotting/__init__.py @@ -34,10 +34,20 @@ if config.get('plotting', 'library') is not 'none': GP.plot_confidence = gpy_plot.gp_plots.plot_confidence GP.plot_density = gpy_plot.gp_plots.plot_density GP.plot_samples = gpy_plot.gp_plots.plot_samples + GP.plot = gpy_plot.gp_plots.plot + GP.plot_magnificaion = gpy_plot.latent_plots.plot_magnification from ..core import SparseGP SparseGP.plot_inducing = gpy_plot.data_plots.plot_inducing + from ..core import GPLVM + GPLVM.plot_latent = gpy_plot.latent_plots.plot_latent + + from ..kern import Kern + Kern.plot_covariance = gpy_plot.kern_plots.plot_kern + + # Variational plot! + from . import matplot_dep # Still to convert to new style: GP.plot = matplot_dep.models_plots.plot_fit