coerce_extrema | R Documentation |
This collection of S3 methods 'resolve' messy dates into a single date according to some explicit bias, such as returning the minimum or maximum date, the mean, median, or modal date, or a random date from among the possible resolutions for each messy date. If the date is not 'messy' (i.e. has no annotations) then just that precise date is returned. This can be useful for various descriptive or inferential projects.
vmin(..., na.rm = FALSE)
## S3 method for class 'mdate'
vmin(..., na.rm = TRUE)
## S3 method for class 'mdate'
min(..., na.rm = TRUE)
vmax(..., na.rm = FALSE)
## S3 method for class 'mdate'
vmax(..., na.rm = TRUE)
## S3 method for class 'mdate'
max(..., na.rm = TRUE)
... |
a mdate object |
na.rm |
Should NAs be removed? True by default. |
A single scalar or vector of dates
d <- as_messydate(c("2008-03-25", "?2012-02-27", "2001-01?", "2001~",
"2001-01-01..2001-02-02", "{2001-01-01,2001-02-02}",
"{2001-01,2001-02-02}", "2008-XX-31", "-0050-01-01"))
d
vmin(d)
min(d)
vmax(d)
max(d)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.