plotting fix

This commit is contained in:
James Hensman 2014-03-13 16:44:39 +00:00
parent 328e0124c7
commit c302e515e2
5 changed files with 6 additions and 7 deletions

View file

@ -86,8 +86,7 @@ def plot_fit(model, plot_limits=None, which_data_rows='all',
upper = m + 2*np.sqrt(v)
else:
m, v = model.predict(Xgrid, full_cov=False, Y_metadata=Y_metadata)
lower, upper = model.predict_quantiles(Xgrid, Y_metadata=Y_metadata)
lower, upper = model.predict_quantiles(Xgrid, Y_metadata=Y_metadata)
for d in which_data_ycols: