more on rstat.getDataFrame()

git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2096 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2007-10-08 11:00:26 +00:00
parent 4c08d6d022
commit 68d20aa1ea

View file

@ -99,6 +99,6 @@ class RStat(object):
for rowId, columnId, value in data:
if columnId not in columnsToOmit:
result.setdefault(rowId, []).append(value)
#print result
self.intermediateData = result
matrix = rpy.with_mode(rpy.NO_CONVERSION, r.data_frame)(**result)
return matrix