You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see in other examples that None is passed in to drop the labels entirely. I guess that it should be this in order to fit with the other code:
if xlabel is not None:
plt.xlabel(xlabel);
The kf_book/gaussian_internal.py code has a bug that over-writes the x and y axis titles. The plot_correlated_data code here:
if xlabel is not None:
plt.xlabel('Height (in)');
plt.ylabel('Weight (lbs)')
Should be something like this:
The text was updated successfully, but these errors were encountered: