screen link : https://app.dataquest.io/m/294/guided-project%3A-exploring-ebay-car-sales-data/5/exploring-the-date-columns
not getting any output
using this code at step 5
cols = [‘data_crawled’,‘ad_created’,‘last_seen’]
for cols in autos.columns:
autos[cols].value_counts(normalize=True, dropna=False).describe()
this code showed me no output
also tried
autos[[‘date_crawled’,‘ad_created’,‘last_seen’]][0:5]
but it showed me an errorBasics.ipynb (50.4 KB)