From dc2a8a531ef954bdd154827c75fa10d71b69cd14 Mon Sep 17 00:00:00 2001 From: James Hensman Date: Fri, 25 Oct 2013 09:51:41 +0100 Subject: [PATCH] started changing the plotting in examples to remove plot_single_output --- GPy/examples/regression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GPy/examples/regression.py b/GPy/examples/regression.py index 3bf2377e..ca4f506d 100644 --- a/GPy/examples/regression.py +++ b/GPy/examples/regression.py @@ -57,8 +57,8 @@ def coregionalization_toy(max_iters=100): m.optimize(max_iters=max_iters) fig, axes = pb.subplots(2,1) - m.plot_single_output(output=0,ax=axes[0]) - m.plot_single_output(output=1,ax=axes[1]) + m.plot(fixed_inputs=[(1,0)],ax=axes[0]) + m.plot(fixed_inputs=[(1,1)],ax=axes[1]) axes[0].set_title('Output 0') axes[1].set_title('Output 1') return m