Displaying 2 results from an estimated 2 matches for "co_cod".
Did you mean:
co_code
2010 May 19
1
Why does my RPy2 program run faster on Windows?
...nquote(item[1])
elif(item[0]=="bm"):
bm=unquote(item[1])
print "cds: %s bm: %s" % (cds,bm)
print "Fetching data"
t3=datetime.now()
for row in self.cursor.execute("select * from (select * from (
select co_code,dlyprice_date,dlyprice_close from feed_dlyprice P where
co_code in (%s,%s) ) DataTable PIVOT ( max(dlyprice_close) FOR co_code IN
([%s],[%s]) )PivotTable ) a order by dlyprice_date" %(cds,bm,cds,bm)):
d1.append(str(row[0]))
v1.append(row[1])
v2.append(row[...
2007 Sep 27
1
to overcome error while computing sd for each subset of data (PR#9931)
...ble("c:/mri/data/ratioinput.txt",header=T, na.strings =
"NA",fill=TRUE)
> dim(a)
[1] 32515 27
> BusinessRisk<-a[,16]/(a[,26]/a[,27])
> a1<-a[,1:3]
> a2<-cbind(a1,BusinessRisk)
> c1<-aggregate(BusinessRisk,list(a2[,1]),mean)
> names(a)
[1] "Co_Code" "Co_Name" "Year" "TotSholderFund"
[5] "TotLiab" "NetBlock" "Investments" "Inventories"
[9] "SundryDebts" "CashandBank" "TotCurrAssets" "...