The question: how to cast R objects to python ones
My case: I need to use the result of cor.test() into a python routine.
correlation = robjects.r('function(x, y) cor.test(x, y)')
corr= correlation(robjects.IntVector(goodtotemp), robjects.IntVector(goodGDPs))
print corr
print corr[3]
print 'coef:',type(corr[3])
outputs, as expected:
cor
0.984881
coef: <class 'rpy2.robjects.vectors.FloatVector'>
Howover, I can't use corr[3] as an python object,
c=corr[3]
print 'c:',c*10., type(c)
look (Here's how I know that I'm doing something wrong!), the output:
c:
Traceback (most recent call last):
File "./GDPAnalyzer.py", line 234, in <module>
print 'c:',c*10., type(c)
TypeError: unsupported operand type(s) for *: 'FloatVector' and 'float'
Any hint/help is appreciated!
FloatVectorand afloat. Try to explicitly castcto afloat- like this -float(c)*10and see if it works. – Praveen Gollakota Apr 13 '11 at 17:12