October 2018
Intermediate to advanced
134 pages
2h 39m
English
Since we have missing data values, we will have to sort through the data to understand what's going on:
df[df['glucose_concentration'] == 0]
This provides us with a DataFrame, as seen in the following screenshot:

Here, we can see that there are five cases where the glucose_concentration is 0, meaning that it is likely that there is some missing information in the dataset. This will hinder the accuracy of our algorithm, so we have to preprocess the data.
Read now
Unlock full access