I have a dataset, under which the column value for data and time are included 2021-12-22 16:22:31
to get the month, i ran this code
> triprawdata$date <- as.Date(triprawdata$started_at) #The defalt format is yyyy-mm-dd
> triprawdata$month <- format(as.Date(triprawdata$date), "%m")```
The output is coming as 01,02,03 denoting the month value
Now if i want to rename this 01,02,03 into Jan,Feb,Mar,.. what should i do ?