Displaying 2 results from an estimated 2 matches for "indb".
Did you mean:
andb
2010 May 29
0
plotting density in same plot in loop iteration
...round(max(q[,"a"]),0)
u<-round(min(q[,"a"]),0)
colnames(v)<-c("a")
D<-q[,"a"]
d<-density(D)
pdf('L')
for (h in length(s[["a"]])) {
for (i in length(S[["a"]])) {
inda<-which(q[h,"a"]==q[h,"d"])
indb<-which(q[i,"a"]==q[i,"e"])
R<-(s[c(inda),"f"]+s[c(indb),"f"])/2
indh<-which(abs(q[,"b"]-R)<=(2*std))
indi<-which(abs(q[,"c"]-R)<=(2*std))
A<-q[indh,c("a","b")]
colnames(A)<- c("a",&q...
2010 May 20
1
sqldf: issues with natural joins
...[2:4], dfName = 'b')
> C <- data.frame(Tid = Tid[1:3], dfName = 'c')
# then use the sqldf library
> library(sqldf)
> sqldf()
# to create indices on the Tid variable shared across data.frames
> sqldf('create index indA on A(Tid)')
> sqldf('create index indB on B(Tid)')
> sqldf('create index indC on C(Tid)')
# check to make sure everything is there
> sqldf('select * from sqlite_master')
# doing a natural join (implicitly on Tid)
# does not give the expected joins
> sqldf('select * from main.A natural join main.B')...