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

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

converting string to date omits my data in R

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...