| midnightStandard | R Documentation |
Corrects "timeDate" objects if they do not fulfill the ISO8601
midnight standard.
midnightStandard (charvec, format)
midnightStandard2(charvec, format)
charvec |
a character string or vector of dates and times. |
format |
a string, the format specification of the input character vector. |
midnightStandard2() calls strptime. Since the
latter returns NAs for elements that don't conform to the
midnight standard, the inputs corresponding to NAs are further
processed to fix this.
midnightStandard() converts to character vector the result
obtained from midnightStandard2().
for midnightStandard, a character vector,
for midnightStandard2, a POSIXct object with time
zone "GMT".
whichFormat
ch <- "2007-12-31 24:00"
midnightStandard(ch)
(ms2 <- midnightStandard2(ch))
class(ms2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.