| Miscellaneous-methods | R Documentation |
Miscellaneous mondate methods.
## S3 method for class 'mondate' mean(x, trim = 0, na.rm = FALSE, ...) ## S3 method for class 'mondate' unique(x, ...) ## S3 method for class 'mondate' quarters(x, abbreviate)
x |
a mondate |
trim |
see |
na.rm |
see |
abbreviate |
|
... |
arguments passed to and from other methods |
mean(x = "mondate", ...)Calculate the mean date of mondates.
Arguments trim and na.rm have the usual meaning
(see base::mean).
pmean(... = "mondate")Calculate the "parallel" mean date of mondates.
Arguments in ...
must all be mondates.
Result will be a mondate
with properties equal to those of the first
mondate in ....
unique(x = "mondate", ...)Returns a mondate but with duplicate
elements/rows removed.
For an explanation of the arguments in ...,
see base::unique.
quarters(x = "mondate", abbreviate)Returns a character vector of "Q1" to "Q4".
See quarters.
(M<-mondate.mdy(12,31,2001:2003))
mean(M) # the middle value, Dec. 31, 2002
(M<-c(M,mondate.mdy(12,31,2004))) # tack on another yearend
mean(M) # mid-year 2003
mean(M,12) # 12 is coerced to Dec. 31, 2000, so the
# mean is again Dec. 31, 2002
x <- mondate.ymd(2001:2005,12) # five year ends
y <- x-12 # one year earlier
pmean(x,y) # 2001-06-30 ... 2005-06-30
unique(M,M) # just M
(M<-matrix(M,nrow=2)) # now a matrix
rbind(M,M) # 2 M's, stacked
unique(rbind(M,M)) # M again, still a matrix
m <- mondate.ymd(2013, 1:12) # end of the months of 2013
quarters(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.