search for: _date_

Displaying 2 results from an estimated 2 matches for "_date_".

Did you mean: date_
2025 May 31
1
Failed to convert text to date
On 31 May 2025 at 22:02, Christofer Bogaso wrote: | I tried to convert a date-like string to date as below | | as.Date("202012", format = "%y%m") | | This gives NA | | Could you please help why I am getting NA value? A _Date_ is comprised of three values for _year_, _month_ and _day_. What you supplied does not match that requirement. Hence the failure you see, and one way to overcome this (by specifying an arbitrary day, here the first): > as.Date("202012", "%Y%m") [1] NA > as,Date(pa...
2025 May 31
3
Failed to convert text to date
Hi, I tried to convert a date-like string to date as below as.Date("202012", format = "%y%m") This gives NA Could you please help why I am getting NA value?