August 2015
Beginner to intermediate
294 pages
5h 20m
English
Once the missing data is handled, various operations can be performed on the data.
There are a number of aggregation operations, such as average, sum, and so on, which you would like to perform on a numerical field. These are the methods used to perform it:
ELEMENTARY school who are obese, we'll first filter the ELEMENTARY data with the following command:>>> data = d[d['GRADE LEVEL'] == 'ELEMENTARY'] 213.41593780369291
Now, we'll find the mean using the following command:
>>> data['NO. OBESE'].mean()
The elementary grade level data is filtered and stored in the data object. The NO. OBESE column is selected, which contains the number of obese students ...
Read now
Unlock full access