Recall & Review
beginner
What is the purpose of the
dt accessor in pandas?The
dt accessor allows you to access datetime properties and methods of pandas Series with datetime values, making it easy to extract parts like year, month, day, and more.Click to reveal answer
beginner
How do you extract the year from a pandas Series of datetime values?
Use
series.dt.year to get the year part of each datetime in the Series.Click to reveal answer
intermediate
Which
dt property would you use to get the day of the week as an integer (Monday=0)?Use
series.dt.dayofweek to get the day of the week as an integer where Monday is 0 and Sunday is 6.Click to reveal answer
beginner
True or False: You can use
dt accessor to convert datetime Series to strings.True. Use
series.dt.strftime() to format datetime as strings with the dt accessor.Click to reveal answer
beginner
What will
series.dt.hour return when applied to a datetime Series?It returns the hour part (0 to 23) of each datetime value in the Series.
Click to reveal answer
Which pandas
dt property gives the month number from a datetime Series?✗ Incorrect
The
dt.month property extracts the month number (1 to 12) from each datetime value.What does
series.dt.dayofyear return?✗ Incorrect
dt.dayofyear returns the day number within the year, starting at 1.If you want to get the weekday name like 'Monday' from a datetime Series, which
dt method do you use?✗ Incorrect
Use
series.dt.day_name() to get the weekday name as a string.Which of these is NOT a valid
dt property in pandas?✗ Incorrect
dt.hour_of_day is not a valid property. Use dt.hour instead.What type of pandas object must you have to use the
dt accessor?✗ Incorrect
The
dt accessor works only on Series with datetime64 dtype.Explain how to extract the year, month, and day from a pandas datetime Series using the dt accessor.
Think about the properties that give parts of a date.
You got /4 concepts.
Describe how you would find the weekday name and the hour of the day from a datetime Series in pandas.
One returns a string name, the other returns a number.
You got /4 concepts.