Displaying 20 results from an estimated 572 matches for "eastern".
2004 May 27
2
axis.POSIXct: Datetime data and plotting
...appended the version information below my signature), this produces a graph with a vertical line that lines up with "2003/01/17" on the top axis, but not on the bottom axis.
The issue seems to relate to time zones: here's what d looks like on my computer:
> d
[1] "2003-01-15 Eastern Standard Time"
[2] "2003-01-16 Eastern Standard Time"
[3] "2003-01-17 Eastern Standard Time"
[4] "2003-01-18 Eastern Standard Time"
[5] "2003-01-19 Eastern Standard Time"
(Actually I'm on Eastern Daylight Time, but let's ignore that for now.)
C...
2006 Oct 08
2
Select range of dates
...entral 20358 FALSE TRUE
3 05/08/2001 Central 16245 FALSE TRUE
4 02/02/2002 Western 112 TRUE FALSE
5 21/03/2002 Western 98756 TRUE FALSE
6 01/04/2002 Western 1598414 FALSE TRUE
7 07/01/2001 Western 1255 FALSE TRUE
8 20/10/2003 Central 16289 TRUE FALSE
9 21/10/2003 Eastern 10000 FALSE TRUE
10 22/10/2003 Eastern 98737 FALSE TRUE
11 23/10/2003 Eastern 198756 TRUE FALSE
12 24/10/2003 Eastern 98756 FALSE TRUE
13 25/10/2003 Eastern 65895 TRUE FALSE
14 26/10/2003 Eastern 2142266 FALSE TRUE
15 27/10/2003 North 98756 TRUE FALSE
16 28/10/2003 Nort...
2020 Oct 01
3
timezone tests and R-devel
The return value of Sys.time() today with a timezone of US/Eastern is
unchanged between 4.0.3-patched and devel, but on devel the following test
fails
all.equal(x, as.POSIXlt(x))
with
x = Sys.time()
This means that devel does not complete make tests (failure on
tests/reg-tests-2.R)
It is entirely possible that it is an error on my end, I use
export TZ=&quo...
2004 Mar 05
3
as.POSIXct problem
Hi all,
I'm having difficulty converting a 'dates' object to a POSIXct object:
testDATES<-c(35947,35971,36004,36008,36053,36066)
testDATES<-chron(dates=testDATES, format = c(dates = "m/d/y"),
origin=c(month = 12, day = 30, year = 1899))
>[1] 06/01/98 06/25/98 07/28/98 08/01/98 09/15/98 09/28/98
> as.POSIXct(testDATES)
[1] NA NA NA NA NA NA
2005 Feb 10
3
question about sorting POSIXt vector
...trptime(test,format="%Y-%m-%d %H:%M:%S")
> order(test,decreasing=F)#doesn't work - why?
Error in order(test, decreasing = F) : non-atomic type in greater
> tst <- test + 0
> order(tst,decreasing=F)#works - how come?
[1] 3 4 2 1
> print(tst)
[1] "2005-02-08 18:49:15 Eastern Standard Time" "2005-02-07 18:36:54
Eastern Standard Time"
[3] "2005-02-04 18:37:03 Eastern Standard Time" "2005-02-06 18:29:04
Eastern Standard Time"
>
2009 Mar 25
1
Requesting help with lattice again
...his sequence
and the labels are too along the panels. Is there a way to address this?
thank you very much for the assistance.
Steve
This is part of the larger data base, after I passed it thru melt.
Region Species Scenario HydroState
HSI
1 Eastern Panhandle WBLong NSM Ave
0.165945170
2 Eastern Panhandle WBLong NSM Dry
0.056244263
3 Eastern Panhandle WBLong NSM Wet
0.290692607
4 Eastern Panhandle WBLong ECB Ave
0.165945170
5...
2004 Apr 29
1
Entering times around the start of daylight savings time
...04-03 19:00:00 EST" "2004-04-03 20:00:00 EST"
[3] "2004-04-03 22:00:00 EST" "2004-04-03 22:00:00 EST"
[5] "2004-04-03 23:00:00 EST"
Giving the times between 2:00 and 3:00 GMT on 4 April which are all off by one
hour. I tried setting TZ (to "Canada/Eastern") but didn't see any change.
For comparison I tried the same thing in R 1.8.1 for Windows and got a similar
error, but the one hour that is wrong is one hour early, rather than one hour
late:
> ISOdatetime(2004,4,4,0:4,0,0,"GMT")
[1] "2004-04-03 19:00:00 Eastern Standa...
2004 Mar 22
2
Date operations
Hello:
Thanks in advance for your time ?
I am having a data.frame with one of the columns containing the weeks as follows. How can I do the following in the most efficient way ?
1. Find the minimum date ?
2. Find the maximum date ?
3. How do we sort based on ascending order the date ?
An example as follows.
Week
1-Jan-01 (<----- MIN DATE)
7-Jan-01
14-Jan-01
21-Feb-01 (<----- MAX DATE)
2008 Jan 08
0
Status of Timezone support / Handeling DTSTART; TZID="(GMT-05.00) Eastern Time (US & Canada)":20080107T123000
...dstarts and
dends will it convert those times to UTC or otherwise allow me to do
that?
When I tried to parse an iCalendar input file started off with
something like this:
BEGIN:VCALENDAR
METHOD:REQUEST
PRODID:Microsoft CDO for Microsoft Exchange
VERSION:2.0
BEGIN:VTIMEZONE
TZID:(GMT-05.00) Eastern Time (US & Canada)
X-MICROSOFT-CDO-TZID:10
BEGIN:STANDARD
DTSTART:16010101T020000
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=11;BYDAY=1SU
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010101T020000
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
RRULE:FREQ=YEARLY;WKST=MO;INTER...
2006 Jul 28
4
add one month or one year to a date
Hi,
I need to be able to add one month or in some cases on eyear to a Date.
Does anyone know of any easy ways of doing this?
thanks
scott
--
Posted via http://www.ruby-forum.com/.
2020 Oct 02
2
timezone tests and R-devel
Yes, the potential issue I see is that
make check
fails when I explicitly set TZ. However, I set it to be the same as what
the system reports when I login.
Details: The system (RHEL) I am working on has
$ strings /etc/localtime | tail -n 1
EST5EDT,M3.2.0,M11.1.0
$ date +%Z
EDT
$ echo $TZ
US/Eastern
On Fri, Oct 2, 2020 at 9:48 AM Sebastian Meyer <seb.meyer at fau.de> wrote:
> Thank you for the report. In R-devel, all.equal.POSIXt() by default
> reports inconsistent time zones. Previously,
>
> > x <- Sys.time()
> > all.equal(x, as.POSIXlt(x, tz = "EST5EDT&...
2015 May 01
5
rsync backup to fileserver - mystery
...ome directory to.
I have a daily cron job that runs the following command:
rsync -av --delete /home/frankcox/ /mnt/fileserver/backup
I have a directory named misc/sheet-music/classical. About a week ago I created a new subdirectory there, /home/frankcox/misc/sheet-music-classical/Russian\ and\ Eastern\ European/
Notice the spaces in the subdirectory name; I don't know if that's relevant or not.
I store a number of bzip-ed pdf files in that subdirectory, like this: BARTOKA.pdf.bz2, BARTOKB.pdf.bz2 and so on.
Now for the mystery.
The rsync command above gets me a report in my email fro...
2017 Sep 07
0
ISO3 code to 7 continents names
...untrycode package does not seem to distinguish between North and South America. Thanks.
Well it does actually: There are two different region codes:
First load the package that has countryExData. I'm presuming this is:
library(rworldmap)
> table(countryExData$EPI_regions)
Central and Eastern Europ East Asia and the Pacific Europe
19 18 24
Latin America and Caribbe Middle East and North Africa North America
24 19...
2006 Mar 14
5
Indiana timezone changing
I have a couple questions... I am in Indiana and our time zone is changing.
I used to choose America/Indiana/Indianapolis as the zone and we are
changing
to Eastern.
Question 1) Is there a command line only way to change my timezone?
I dont have access to X to run system-config-time. Doing a
"system-config-time --help"
or "system-config-time -h" did not give any information.
Question 2) If the server is setup for NTP I presume I still ha...
2003 Sep 19
1
VoiceMail fromstring?
...AM or PM
; Q "today", "yesterday" or ABdY (*note: not standard
strftime value)
; q "" (for today), "yesterday", weekday, or ABdY (*note:
not standard strftime value)
; R 24 hour time, including minute
;
;
[zonemessages]
eastern=America/NewYork|'vm-received' Q 'digits/at' IMp
central=America/Chicago|'vm-received' Q 'digits/at' IMp
central24=America/Chicago|'vm-received' q 'digits/at' H
'digits/hundred' M 'digits/hours'
;
; Each mailbox is listed in the form...
2013 Feb 07
11
Rails change default time zone.
Hello everyone,
I am using rails 3.2.8.
I want to change time zone to New York time.
I changed following, but didn''t work
#config/application.rb
config.time_zone = ''Eastern Time (US & Canada)''
config.active_record.default_timezone = ''Eastern Time (US & Canada)''
If am wrong please clarify.
Thank You!
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscr...
2006 Mar 14
0
How can I get the Eastern time zone when inserting?
I''m having difficulty when I''m inserting an entry or someone enters a
comment, because the time is 3 hours behind. How can I add 3 hours when
a comment or entry is saved? Or better yet, how can I use the Eastern
time zone?
Thanks!
--
Posted via http://www.ruby-forum.com/.
2004 Mar 06
0
Summary: as.POSIXct
...one idea is to create the chron dates
>relative to the default origin like this:
>
> > testDATES<-c(35947,35971,36004,36008,36053,36066)
>> testDATES.chron <- chron("12/30/1899") + testDATES
> > as.POSIXct(testDATES.chron)
>[1] "1998-05-31 20:00:00 Eastern Daylight Time"
>[2] "1998-06-24 20:00:00 Eastern Daylight Time"
>[3] "1998-07-27 20:00:00 Eastern Daylight Time"
>[4] "1998-07-31 20:00:00 Eastern Daylight Time"
>[5] "1998-09-14 20:00:00 Eastern Daylight Time"
>[6] "1998-09-27 20:00:...
2003 Nov 17
1
Voip providers U.S (eastern) ??
Hello, can anyone out there recommend any voip companies in the US that can
provide D.I.D lines that ring in to you SIP/IAX connection? I am aware
of getting a T1 hooked up with D.I.D lines and a bank ofr lets say 20
numbers.. But is there any way around this
using mostly VOIP ??
Thanks...
2005 Aug 01
1
Voicemail envelope time is 4 hours ahead
I'm running a recent CVS build under Solaris 10.
In the shell than I'm running the Asterisk console I have TZ=US/Eastern
and in my voicemail.conf I have tz=eastern and
eastern=America/New_York|'vm-received' Q 'digits/at' IMp.
The voicemail envelope information seems to be exactly 4 hours ahead.
No matter what I try I can't seem to find the cause.
Any ideas?
Frank