Displaying 4 results from an estimated 4 matches for "strvector".
2009 Dec 08
0
[LLVMdev] More questions on CompilerDriver.
Hi Sanjiv,
On Tue, Dec 8, 2009 at 4:41 AM, Sanjiv Gupta <sanjiv.gupta at microchip.com> wrote:
> Mikhail Glushenkov wrote:
>>
>> > 2. Is there anyway to call a C++ hook from inside actions?
>> > for example
>> > (actions (case
>> > (not_empty "Wl,"), (append_cmd "$CALL(Myhook)" )))
>>
>> Not yet, this is
2009 Dec 08
2
[LLVMdev] More questions on CompilerDriver.
Mikhail Glushenkov wrote:
>
> > 2. Is there anyway to call a C++ hook from inside actions?
> > for example
> > (actions (case
> > (not_empty "Wl,"), (append_cmd "$CALL(Myhook)" )))
>
> Not yet, this is something I'm working on right now.
>
Hi Mikhail,
Did you get a chance to do something about this?
>
>
> BTW, I've
2010 May 19
1
Why does my RPy2 program run faster on Windows?
...]) )PivotTable ) a order by dlyprice_date" %(cds,bm,cds,bm)):
d1.append(str(row[0]))
v1.append(row[1])
v2.append(row[2])
t4=datetime.now()
t1=datetime.now()
print "Calculating"
d1.pop(0)
d1vec = robjects.StrVector(d1)
v1vec = robjects.FloatVector(v1)
v2vec = robjects.FloatVector(v2)
r1 = r('Return.calculate(%s)' %v1vec.r_repr())
r2 = r('Return.calculate(%s)' %v2vec.r_repr())
tl = robjects.rlc.TaggedList([r1,r2],tags=('Geo','Nifty'))...
2011 Oct 17
0
rpy2 pie chart
...data
Pathway Occurrences
A 10%
B 50%
C 20%
E 10%
filename = './testing.png'
grdevices = importr('grDevices')
rdevices.png(file=filename, width=1200, height=800)
dataf = Robjects.DataFrame({'pathways':Robjects.StrVector(Pathways),
occurrences' :
Robjects.FloatVector(Occurrences)
})
pie = ggplot2.ggplot(dataf)+ \
ggplot2.aes_string(x='',fill='pathways',weight="amounts")+\
ggplot2.geom_bar(width=1)+\
ggplot2...