Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I wasa trying to clean date, and exact datewith date. first I have sublseted the date to t he location, to extract with certain time period, I converted the data

:
1-1-2021
1-1-2021
1-1-2021
1-1-2021
29-9-2020
29-9-2020
29-9-2020
29-9-2020
.
.
.

to date using as.Date() europe_data$date<-as.Date(europe_data$date ,"%d-%m-%y"). but after this line of code I lost the data in time where in year 2021. Is because I messed the pattern or this function does omit some data?

thank you.

question from:https://stackoverflow.com/questions/66048982/converting-string-to-date-omits-my-data-in-r

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

This should work, as.Date(europe_data$date ,"%d-%m-%Y")


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...