TCS Ievolve competncy ID - 5337 - Data Science
E0- Fresco Play Hands on - R basics - 2 Date and Time
Ievolve course ID - 55101
question -
1. Create a string "25-12-2016" and convert it into the date format
2. Print the date
3. Note: Specify the format of the string being used as %d-%m-% Y
2. Print the date
3. Note: Specify the format of the string being used as %d-%m-% Y
answer -
s = ("2016-12-25")
as.character(s)
0 Comments