From 8a19cb38b134482195f8cbd5a37cf97d37051478 Mon Sep 17 00:00:00 2001 From: Abhishek Goswami Date: Tue, 30 Jan 2018 00:40:18 +0530 Subject: [PATCH] Correct Mistype while plotting second plot --- Module-3---Exploring-Data/assignment3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Module-3---Exploring-Data/assignment3.py b/Module-3---Exploring-Data/assignment3.py index 18a3712..117dbc9 100644 --- a/Module-3---Exploring-Data/assignment3.py +++ b/Module-3---Exploring-Data/assignment3.py @@ -39,7 +39,7 @@ ax1.set_xlabel('width') ax1.set_ylabel('groove') ax1.set_zlabel('asymmetry') -ax1.scatter(df['area'], df['perimeter'], df['asymmetry'], c='green', marker='.') +ax1.scatter(df['width'], df['groove'], df['asymmetry'], c='green', marker='.') plt.show() @@ -49,4 +49,4 @@ # Groove x Length x Width # Which of the plots were you able to identify two outliers within, that stuck out from the samples? -# Groove x Length x Width \ No newline at end of file +# Groove x Length x Width