search for: msg144184

Displaying 1 result from an estimated 1 matches for "msg144184".

Did you mean: msg144117
2011 Sep 02
2
previous monday date
Hello, I'm attempting to return the date (in form '%Y-%m-%d') of the Monday previous to the current date. For example: since it is 2011-09-02 today, I would expect 2011-08-29 to be the return value. I found the following in: http://www.mail-archive.com/r-help@r-project.org/msg144184.html Start quote from link: prevmonday <- function(x) 7 * floor(as.numeric(x-1+4) / 7) + as.Date(1-4) For example, > prevmonday(Sys.Date()) [1] "2011-08-15" > prevmonday(prevmonday(Sys.Date())) [1] "2011-08-15" End quote from link. But when I do it I get: > prev...