Hello everyone. So I am currently working on the Ebay Car Sales Data Guided Project and while exploring the date columns (Step 5), I decided to look deeper at the registration_month column and noticed that it had a minimum value of 0 and a maximum value of 12, hence suggesting that 13 months were considered, when there are obviously only 12 months in a year. Presuming that the registration months categorise 1 to 12 as January to December, then the value 0 should be an error. I wondered if 0 was an outlier so I investigated further using:
autos[‘registration_month’].value_counts().sort_index()
Getting the output:
So there are almost 4500 entries with a registration month of 0 (about 9%) of all values. The value 0 must be an error then? I’m not sure so I decided to point this out as I hadn’t seen it talked about in other discussions about this project here.