Line using value_counts to create frequency table for a column named datecreated
autos['datecreated'].str[:10].value_counts(normalize=True, dropna=False)
This next line is the one where I am getting the errors or just not the result I want, I want to view the rows in which the datacreated
is lower than 0.0001
autos['datecrawled'].str[:10].value_counts(normalize=True, dropna=False) < 0.0001