Hi,
try the following:
from rpy import *
r('mat = matrix(1:25, 5, 5)')
[[1, 6, 11, 16, 21], [2, 7, 12, 17, 22], [3, 8, 13, 18, 23], [4, 9, 14, 19,
24], [5, 10, 15, 20, 25]]
r('mat[1,1] = 100')
100.0
r('mat')
[[100.0, 6.0, 11.0, 16.0, 21.0], [2.0, 7.0, 12.0, 17.0, 22.0], [3.0, 8.0,
13.0, 1
Bugs item #1710180, was opened at 2007-04-30 10:48
Message generated for change (Settings changed) made by john_owens
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=453021&aid=1710180&group_id=48422
Please note that this message will contain a full copy of the comm
Bugs item #1710180, was opened at 2007-04-30 10:48
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=453021&aid=1710180&group_id=48422
Please note that this message will contain a full copy o
Im going to use SparseMatrices. For these SparseMatrices Im using the R
module SparseM.
There are some problems by converting SparseMatrices. Maby there is an easy
solution. But at the moment I cant found it. Before starting I read the RPY
Reference Manual. The Manual is not complete enough