```{r}
```
d <- as.date(date_string, format = “%m/%d/%Y”) # Checking the data type of the d object by printing it print(d)
#Loading the lubricate package library(lubridate)
d_year <- year(d) d_month <- month(d) d_week <- week(d) d_day <- wday(d)
print(d_year) print(d_month) print(d_week) print(d_day)
d_25 <- d+25 # Displaying the d_25 object print(d_25)
print(daye_diff) print(date_diff == 25)