Re: [Rpy] RPY SPARSE and Matrix

2007-04-30 Thread Ali Santacruz
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

[Rpy] [ rpy-Bugs-1710180 ] Build error, OS X 10.4.9, R 2.5.0 (MacPorts) [rpy-1.0-RC2]

2007-04-30 Thread SourceForge.net
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

[Rpy] [ rpy-Bugs-1710180 ] Build error, OS X 10.4.9, R 2.5.0 (MacPorts)

2007-04-30 Thread SourceForge.net
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

[Rpy] RPY SPARSE and Matrix

2007-04-30 Thread WR -
I’m going to use SparseMatrices. For these SparseMatrices I’m using the R module SparseM. There are some problems by converting SparseMatrices. Maby there is an easy solution. But at the moment I can’t found it. Before starting I read the RPY Reference Manual. The Manual is not complete enough