search for: ztlf

Displaying 1 result from an estimated 1 matches for "ztlf".

Did you mean: tlf
2009 Jul 22
1
Problem with aov
...; data.nas <- read.csv(file="simple.csv",head=TRUE,sep=",") > [the file has headers of Center, MaxInst(which is the count im > analyzing),Hour,X.ofCap] > > I've filtered it based on my needs > data.ztl<-subset(data.nas,Center=="ZTL") > data.ztlf<-subset(data.ztl,X.ofCap>97) > > which gives me everything I need to start breaking up the hours > > So I enter > > hours15t21.data.ztl<-subset(data.ztlf,Hour>14 & Hour<22) > > then > > aov.15t21.ztl<-aov(MaxInst~Hour, data=hours15t21.data.zt...