search for: byday

Displaying 8 results from an estimated 8 matches for "byday".

Did you mean: yday
2004 Jul 16
1
highlighting subset of point with xyplot (or Hmisc(xYplot))
...efault(filein$Site,filein$circ.conc) points(filein$Site,filein$circ.conc,type="p", pch=ifelse(filein$p.value<5e-02,19,21)) I had thought I could just stick in the pch line from above into either xyplot or xYplot with groups set to Site like: xyplot(circ.conc~Day|Site,data=allsites.byday,groups=Site, pch=ifelse(allsites.byday$p.value<5e-02,19,21)) This does not produce any highlighting (all symbols come out as open circles (19)). I have not messed with writing my own panel functions, though I know that is where the solution must lie. Hopefully someone has an example that i...
2001 Jul 14
6
how to type long string
Hi, All: I try to type some long string in R console, whenever I like to change to a new line, I get error message. The following is my simple code -------------------------------------- h3 <- sqlQuery(myConnect, "select * from console where Error: syntax error byday = 'dd1'group by by hour") Error: syntax error --------------------------------------- Any Hints? Thanks. Grant, UWO __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/ -.-.-.-.-.-.-.-....
2007 Mar 19
3
R4.1: seq.POSIXt, tz="AEST" (PR#9572)
...According to help(DateTimeClasses), this is handled by "our own C code". > x <- as.POSIXct("1968-02-27") # tz="AEST" > x.gmt <- as.POSIXct("1968-02-27", tz="GMT") > data.frame( GMT=seq(x.gmt, by="day", length=8), byday=seq(x, by="day", length=8), byDST=seq(x, by="DSTday", length=8)) GMT byday byDST 1 1968-02-27 1968-02-27 1968-02-27 2 1968-02-28 1968-02-28 1968-02-28 3 1968-02-29 1968-03-01 1968-03-02 4 1968-03-01 1968-03-02 1968-03-02 5 1968-03-02 1968-03-02 1968-03-02...
2008 Sep 04
1
Timezone support?
...stripped out some attributes to keep it short and added some blank lines to separate events, feel free to ask for the full file) BEGIN:VCALENDAR VERSION:2.0 BEGIN:VTIMEZONE TZID:America/Chicago BEGIN:DAYLIGHT TZOFFSETFROM:-0600 TZOFFSETTO:-0500 DTSTART:20070311T020000 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU TZNAME:CDT END:DAYLIGHT BEGIN:STANDARD TZOFFSETFROM:-0500 TZOFFSETTO:-0600 DTSTART:20071104T020000 RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU TZNAME:CST END:STANDARD END:VTIMEZONE BEGIN:VTIMEZONE TZID:US/Eastern BEGIN:DAYLIGHT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 DTSTART:20070311T020000 RRULE:FREQ=Y...
2001 Feb 13
1
pass a string to a function
...re is my code. However, it doesn't work. Please help me with this. Thanks, Yu-Ling Wu ----------------------------------------------------- library(RODBC) odbcConnect("console") -> myConnect fun1 <- function(dd1) { h3 <- sqlQuery(myConnect, "select * from console where byday = 'dd1'group by by hour") } fun1('010122') print(summary(h3) __________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2008 Aug 22
0
Question about Timezone In 1.0.2
..."America/Chicago" daylight do timezone_offset_from "-0600" timezone_offset_to "-0500" timezone_name "CDT" dtstart "19700308TO20000" add_recurrence_rule "FREQ=YEARLY;BYMONTH=3;BYDAY=2SU" end standard do timezone_offset_from "-0500" timezone_offset_to "-0600" timezone_name "CST" dtstart "19701101T020000" add_recurrence_rule "YEARLY;BYMONTH=11;BYDAY=1SU"...
2001 Feb 13
0
handle date variables
...Yu-Ling Wu > > > ----------------------------------------------------- > > library(RODBC) > > odbcConnect("console") -> myConnect > > > > fun1 <- function(dd1) { > > h3 <- sqlQuery(myConnect, "select * from console > where > > byday = 'dd1'group by by hour") > > } > > Use paste to construct a string from multiple input > strings. > > sqlQuery(myConnect, > paste("select * from console where byday > =", > dd1, "group by hour")) ___________...
2008 Jan 08
0
Status of Timezone support / Handeling DTSTART; TZID="(GMT-05.00) Eastern Time (US & Canada)":20080107T123000
...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;INTERVAL=1;BYMONTH=3;BYDAY=2SU END:DAYLIGHT END:VTIMEZONE BEGIN:VEVENT DTSTAMP:20080107T155404Z DTSTART;TZID="(GMT-05.00) Eastern Time (US & Canada)":20080107T123000...