I am getting some unexpected behaviour with rypy2:

 ma / robjects.r.rowSums(ma) 

where ma is a matrix

throws an exception

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for /: 'Matrix' and 'FloatVector'

Any help?

有帮助吗?

解决方案

Python operators might differ from R operators.

A self-contained example is not provided with the question, but this should work

ma.ro / robjects.r.rowSums(ma) 
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top