Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
762 views
in Technique[技术] by (71.8m points)

return - Is their a way to show first date and last date on this dataset in python

Screenshot of code Hi, I am trying to find the minimum date and max date found in this dataset, it keeps returning the min and max fields, any idea how to get it to produce the dates? I had it at one point but know is returning this.

question from:https://stackoverflow.com/questions/65641232/is-their-a-way-to-show-first-date-and-last-date-on-this-dataset-in-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Date is not an index so index.min() will give minimum index i.e. 0

data['Date'] = pd.to_datetime(data['Date'])

print(data['Date'].min(), data['Date'].max())

If you want to use your commands make the date column as index

df = df.set_index('Date')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...