From 61ef9912cb774035202869ac5d7da28d3ab34a38 Mon Sep 17 00:00:00 2001 From: mzwiessele Date: Mon, 29 Jun 2015 10:18:37 +0200 Subject: [PATCH] [plotting] parameterized.values --- GPy/plotting/matplot_dep/variational_plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/plotting/matplot_dep/variational_plots.py b/GPy/plotting/matplot_dep/variational_plots.py index 55128ec7..98f5b6b7 100644 --- a/GPy/plotting/matplot_dep/variational_plots.py +++ b/GPy/plotting/matplot_dep/variational_plots.py @@ -22,7 +22,7 @@ def plot(parameterized, fignum=None, ax=None, colors=None, figsize=(12, 6)): lines = [] fills = [] bg_lines = [] - means, variances = parameterized.mean, parameterized.variance + means, variances = parameterized.mean.values, parameterized.variance.values x = np.arange(means.shape[0]) for i in range(means.shape[1]): if ax is None: