You are on page 1of 2

cereals dataset

1. Import data

2. Describe the data

3. Display the first 3 rows

4. Rename a column 'mfr' as 'manufacturer'

5. Identify the details of cereals with calories > 80


6. Use loc and iloc

7. How many rows of data is available with fat > 2 ?

8. Count the number of items per attribute groupby

9. Split data according to an attribute and count


10.Find the details of cereals with protein greater than 2

11. Create a new dataframe with a details of cereal with 'fiber' > 2 for each
'mfr'

12.Analyse the proportion based on 'fiber' attribute and print the output using
formatting options

13.Find the median of a quantity 'fat'

14.Find the median of an attribute 'rating' and select details of cereals with
median > 40

15.Visualize and compare the normal distribution PMF of two categories


'sugars' and 'carbo'

16.Find the mean sample differences in 2 attributes 'fiber' and 'carbo'.


17.Draw a BoxPlot for 'sodium'

18.Draw the skew of an attribute 'calories' and compare with histogram

19.Find excess kurtosis in respect of an attribute 'sugars'.

20.Insert a missing data for 'potass'

You might also like