RLPlot Date- and Time Functions

RLPlot's internal storage of date- and time data is a floating point number representing days after 1-Jan-1900 starting with 1. The decimals give the fraction of the day. Thus the 5-Jan-2006 equals to 38721, and 5-Jan-2006 12:00:00 equals to 38721.5. Thus a time value alone is in the range 0.0 - 1.0, 12:00:00 equals to 0.5. The conversion between internal values and a human readable form is controlled by formats, text strings where each character stands for a specific conversion of the date- and time value. Characters not included inthe table below are either copied to the output or ignored during input.


Format specifiers:

Char.  DescriptionType1)   Char.  DescriptionType1)
Y four digits yearI/O  y two digits yearI/O
X full name of monthI/O  x three character month nameI/O
V two digits monthI/O  v same as V, no leading zeroI/O
W single character monthO      
Z two digits day of monthI/O  z same as Z, no leading zeroI/O
D full name of weekdayO  d three character weekday nameO
E two digits weekdayO  e same as E, no leading zeroO
F single character weekdayO      
H two digits hoursI/O  h same as H, no leading zeroI/O
M two digits minutesI/O  m same as M, no leading zeroI/O
S two digits secondsI/O  s same as S, no leading zeroI/O
T seconds, two decimalsI/O  t same as T, no leading zeroI/O
  
1) format specifier is available for input and output (I/O) or only for output (O)



Examples:

Format Display
 Z.V.Y05.01.2006
 v/z/Y1/5/2006
 d z-x-yThu 5-Jan-06
 D H:MThursday 12:00