lubridate's as_date
Converting data to the proper class is a valuable R skill; now, you'll take your weekends
object and convert it to the Date
class using lubridate
.
The lubridate
package and the weekends
object have already been loaded for you!
This exercise is part of the course
Manipulating Time Series Data in R
Exercise instructions
- Use
lubridate
to convertweekends
to theDate
class, and assign it toweekends_date
. - Print a summary of
weekends_date
to the console.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Convert weekends to Date class with lubridate
___
# Print a summary of weekends_date
___