Displaying 1 result from an estimated 1 matches for "bfc_tail".
2009 Dec 31
1
How to interpret some diagnostic output
...at using R.
R text follows: --------------------
source("dbi-start.R")
am_pm<-"PM Glucose for"
fc_year<-2008
bfc_head<-"select blood.sugar from blood where"
bfc_PM<-"blood.time>\"22:00:00\" and blood.time<=\"23:59:00\""
bfc_tail<-"order by blood.date,blood.time"
bfc<-"blood.date"
nmon<-c(2:12,1)
lst<-list() # init null list
for (i in 1:12) {
year<-fc_year
fc_date <- paste(bfc,">=\"", year, "-", i, "-01\" and ", sep="")
if (i == 1...