Question 6
For the below code which option will provide the samples(rows) containing outliers according to the standard Boxplot in the weight feature ?
dataset = { "height" : [100,103,102,102,176,150,143,133,122,200,230,222,143], "weight" : [30,32,33,34,33,33,37,48,44,51,100,123,111]}data = pd.DataFrame(dataset, columns=['height','weight'])q1 = data['weight'].quantile(0.25)q3 = data['weight'].quantile(0.75)iqr = q3-q1