1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
from __future__ import nested_scopes
import unittest
import sys
try:
from numpy import *
ArrayLib='NumPy'
except ImportError:
try:
from Numeric import *
ArrayLib='Numeric'
except ImportError:
print '\nNumeric not available. Skipping.\n'
sys.exit(0)
import sys
sys.path.insert(1, "..")
from rpy import *
idx = r['[[']
idx.autoconvert(NO_CONVERSION)
def to_r(obj):
# For some reason, these two lines stop working after a few
# iterations of `testall.py --loop'. I'm not sure why
# r.list.autoconvert(NO_CONVERSION)
# return idx(r.list(obj),1)
# These three lines accomplish the same thing, but more
# doesn't stop working after a few iterations.
f = r("function(x) x")
f.autoconvert(NO_CONVERSION)
return f(obj)
class ArrayTestCase(unittest.TestCase):
def setUp(self):
set_default_mode(NO_DEFAULT)
py = array(range(24))
self.py = reshape(py, (2,3,4))
py_to_r = to_r(self.py)
self.py_c = py_to_r.as_py()
r.array.autoconvert(NO_CONVERSION)
self.ra = r.array(range(24), dim=(2,3,4))
ra_to_py = self.ra.as_py()
self.ra_c = to_r(ra_to_py)
r.array.autoconvert(PROC_CONVERSION)
def testZeroDimToR(self):
set_default_mode(NO_CONVERSION)
a = zeros((0,7))
ra = r.c(a)
set_default_mode(NO_DEFAULT)
self.failUnless(r.is_null(ra))
def testZeroDimToPy(self):
self.failUnless(r.array(0,dim=(0,7)) == None)
def testToPyDimensions(self):
self.failUnless(self.py_c.shape == self.py.shape,
'wrong dimensions in Numeric array')
def testToRDimensions(self):
self.failUnless(r.dim(self.ra) == r.dim(self.ra_c),
'wrong dimensions in R array')
def testPyElements(self):
self.failUnless(self.py[0,0,0] == self.py_c[0,0,0] and
self.py[1,2,3] == self.py_c[1,2,3] and
self.py[1,1,2] == self.py_c[1,1,2] and
self.py[1,0,3] == self.py_c[1,0,3],
'Numeric array not equal')
def testRElements(self):
try:
idx.autoconvert(BASIC_CONVERSION)
self.failUnless(idx(self.ra, 1,1,1) == idx(self.ra_c, 1,1,1) and
idx(self.ra, 2,3,4) == idx(self.ra_c, 2,3,4) and
idx(self.ra, 2,2,3) == idx(self.ra_c, 2,2,3) and
idx(self.ra, 2,1,4) == idx(self.ra_c, 2,1,4),
'R array not equal')
finally:
idx.autoconvert(NO_CONVERSION)
def testPyOutOfBounds(self):
self.failUnlessRaises(IndexError, lambda: self.py_c[5,5,5])
def testROutOfBounds(self):
self.failUnlessRaises(RPyException, lambda: idx(self.ra_c, 5,5,5))
def test64BitIntArray(self):
# 64 bit ints
try:
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int64' )
else:
a = array( [1,2,3], Int64 )
except:
print "\nInt64 not found (32 bit platform?), skipping this test.\n"
return
b = r.c(a)
def test32BitIntArray(self):
# 32 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int32' )
else:
a = array( [1,2,3], Int32 )
b = r.c(a)
def test16BitIntArray(self):
# 16 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int16' )
else:
a = array( [1,2,3], Int16 )
b = r.c(a)
def test8BitIntArray(self):
# 8 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int8' )
else:
a = array( [1,2,3], Int8 )
b = r.c(a)
def testBoolArray(self):
# 8 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Bool' )
else:
print "\nBool arrays not supported by Numeric, skipping this test.\n"
return
b = r.c(a)
def test64BitFloatArray(self):
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Float64' )
else:
a = array( [1,2,3], Float64 )
b = r.c(a)
def test32BitFloatArray(self):
# 32 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Float32' )
else:
a = array( [1,2,3], Float32 )
b = r.c(a)
def testCharArray(self):
if(ArrayLib=='NumPy'):
a = array( ['A', 'B', 'C'], character )
else:
a = array( ['A', 'B', 'C'], Character )
self.failUnlessRaises(RPyTypeConversionException, lambda: r.c(a) )
def testStringArray(self):
if(ArrayLib=='NumPy'):
a = array( ['ABCDEFHIJKLM', 'B', 'C C C'], 'S10' )
else: # not available on Numeric
print "\nString arrays not supported by Numeric, skipping this test.\n"
return
self.failUnlessRaises(RPyTypeConversionException, lambda: r.c(a) )
def testObjArray(self):
if(ArrayLib=='NumPy'):
a = array( ['A','B', 'C'], 'object' )
else:
a = array( ['A','B', 'C'], PyObject )
self.failUnlessRaises(RPyTypeConversionException, lambda: r.c(a) )
def test64BitIntScalar(self):
# 64 bit ints
try:
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int64' )
else:
a = array( [1,2,3], Int64 )
except:
print "\nInt64 not found (32 bit platform?), skipping this test.\n"
return
b = r.c(a[0])
def test32BitIntScalar(self):
# 32 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int32' )
else:
a = array( [1,2,3], Int32 )
b = r.c(a[0])
def test16BitIntScalar(self):
# 16 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int16' )
else:
a = array( [1,2,3], Int16 )
b = r.c(a[0])
def test8BitIntScalar(self):
# 8 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Int8' )
else:
a = array( [1,2,3], Int8 )
b = r.c(a[0])
def testBoolScalar(self):
# 8 bit ints
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Bool' )
else:
print "\nBool arrays not supported by Numeric, skipping this test.\n"
return
b = r.c(a[0])
def test64BitFloatScalar(self):
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Float64' )
else:
a = array( [1,2,3], Float64 )
b = r.c(a[0])
def test32BitFloatScalar(self):
if(ArrayLib=='NumPy'):
a = array( [1,2,3], 'Float32' )
else:
a = array( [1,2,3], Float32 )
b = r.c(a[0])
def testCharScalar(self):
if(ArrayLib=='NumPy'):
a = array( ['A', 'B', 'C'], character )
self.failUnless( r.c(a[0])=='A' )
else:
# RPy does not handle translation oc Numeric.Character objects
a = array( ['A', 'B', 'C'], Character )
self.failUnlessRaises( RPyTypeConversionException, lambda:r.c(a[0])=='A' )
def testStringScalar(self):
if(ArrayLib=='NumPy'):
a = array( ['ABCDEFHIJKLM', 'B', 'C C C'], 'S10' )
self.failUnless( r.c(a[0])=='ABCDEFHIJK' )
else:
# String class not available on Numeric
print "\nString arrays not supported by Numeric, skipping this test.\n"
return
def testObjScalar(self):
if(ArrayLib=='NumPy'):
a = array( ['A', 'B', 'C'], 'object' )
else:
a = array( ['A', 'B', 'C'], PyObject )
self.failUnless( r.c(a[0])=='A' )
if __name__ == '__main__':
unittest.main()
|