Nothing
# This R package is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This R package is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General
# Public License along with this R package; if not, write to the
# Free Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
################################################################################
# FUNCTION: DESCRIPTION:
# whichFormat Returns format string called by 'timeDate'
################################################################################
whichFormat <- function(charvec, silent = FALSE) {
# A function implemented by Diethelm Wuertz
# Charvec String:
if (!length(charvec)) # need [1] later; avoid problems in timeSeries() when rownames NULL
return("unknown")
if (all(is.na(charvec))) return(NA)
charvec = as.character(charvec)
# Specifications:
# NCHAR = mean(nchar(charvec)) # YC : why NCHAR is calculated twice ?
## All this assume that charvec is very uniform so we only look at the entry [1] !?????
## rather, e.g., NCHAR <- max(nchar(ch <- head(charvec))) and the continue looking at all ch[] ?
c1 <- charvec[1]
## 2023-12-09 GNB:
## c1 = NA causes error 'missing value where TRUE/FALSE needed' further below
## Hence check for that. There is at least one non-NA at this point, so:
if(is.na(c1))
c1 <- charvec[!is.na(charvec)][1]
NCHAR <- nchar(c1)
SUBSTR <- substring(c1, 5, 5) == "-"
# American Format:
if (regexpr("/....", c1)[[1]] > 0) return("%m/%d/%Y")
if (regexpr("-...-....", c1)[[1]] > 0) return("%d-%b-%Y")
# DW:
# There should be better checks on the format identification ...
# [MM] Yes! there are: as.POSIXlt.character() tries quite a few in its default 'tryFormats'
# and you could call it by using an even larger 'tryFormats'
# Human readable ISO:
if (NCHAR == 4 & !SUBSTR) return("%Y")
if (NCHAR == 7 & SUBSTR) return("%Y-%m")
if (NCHAR == 10 & SUBSTR) return("%Y-%m-%d")
if (NCHAR == 13 & SUBSTR) return("%Y-%m-%d %H")
if (NCHAR == 16 & SUBSTR) return("%Y-%m-%d %H:%M")
if (NCHAR == 19 & SUBSTR) return("%Y-%m-%d %H:%M:%S")
## allow for fractional seconds:
if (NCHAR >= 20 & SUBSTR & substr(c1, 20,20) == ".")
return("%Y-%m-%d %H:%M:%S") # ">=" allow for fractional seconds (which are *not* read)
# Short ISO:
if (NCHAR == 6 & !SUBSTR) return("%Y%m")
if (NCHAR == 8 & !SUBSTR) return("%Y%m%d")
if (NCHAR == 10 & !SUBSTR) return("%Y%m%d%H")
if (NCHAR == 12 & !SUBSTR) return("%Y%m%d%H%M")
if (NCHAR == 14 & !SUBSTR) return("%Y%m%d%H%M%S")
# Otherwise:
if (!silent)
warning("character string is not in a standard unambiguous format")
# Return Value:
"unknown"
}
################################################################################
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.