From 705afd6b399386a4ac17c14d45adba4f1c9b92fd Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Tue, 11 Oct 2016 17:22:30 +0200 Subject: [PATCH] Update 2_3_0_Visualisation.ipynb Corregidos los ejes cambiados --- ml1/2_3_0_Visualisation.ipynb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ml1/2_3_0_Visualisation.ipynb b/ml1/2_3_0_Visualisation.ipynb index 49021ca..2689f85 100644 --- a/ml1/2_3_0_Visualisation.ipynb +++ b/ml1/2_3_0_Visualisation.ipynb @@ -143,8 +143,9 @@ "source": [ "# Plot histogram, the default is 10 bins\n", "plt.hist(iris.target, bins=10)\n", - "plt.xlabel('iris class')\n", - "plt.ylabel('Number of species')\n" + "plt.xlabel('Number of species')\n", + "plt.ylabel('iris class')\n" + ] }, {