From 68d20aa1ea4f0eb308a7e5f34bd4a59d70d936ca Mon Sep 17 00:00:00 2001 From: helmutm Date: Mon, 8 Oct 2007 11:00:26 +0000 Subject: [PATCH] more on rstat.getDataFrame() git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2096 fd906abe-77d9-0310-91a1-e0d9ade77398 --- pyscript/rstat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyscript/rstat.py b/pyscript/rstat.py index 33c82ed..44a86de 100644 --- a/pyscript/rstat.py +++ b/pyscript/rstat.py @@ -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