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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
|
# pylint: disable-msg=W0611, W0612, W0511,R0201
"""Tests suite for MaskedArray & subclassing.
:author: Pierre Gerard-Marchant
:contact: pierregm_at_uga_dot_edu
:version: $Id: test_core.py 3245 2007-08-15 13:38:19Z pierregm $
"""
__author__ = "Pierre GF Gerard-Marchant ($Author: pierregm $)"
__version__ = '1.0'
__revision__ = "$Revision: 3245 $"
__date__ = '$Date: 2007-08-15 06:38:19 -0700 (Wed, 15 Aug 2007) $'
import types
import numpy
import numpy.core.fromnumeric as fromnumeric
from numpy.testing import NumpyTest, NumpyTestCase
from numpy.testing.utils import build_err_msg
from numpy import array as narray
import maskedarray.testutils
from maskedarray.testutils import *
import maskedarray.core as coremodule
from maskedarray.core import *
pi = numpy.pi
#..............................................................................
class test_ma(NumpyTestCase):
"Base test class for MaskedArrays."
def __init__(self, *args, **kwds):
NumpyTestCase.__init__(self, *args, **kwds)
self.setUp()
def setUp (self):
"Base data definition."
x = narray([1.,1.,1.,-2., pi/2.0, 4., 5., -10., 10., 1., 2., 3.])
y = narray([5.,0.,3., 2., -1., -4., 0., -10., 10., 1., 0., 3.])
a10 = 10.
m1 = [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]
m2 = [0, 0, 1, 0, 0, 1, 1, 0, 0, 0 ,0, 1]
xm = masked_array(x, mask=m1)
ym = masked_array(y, mask=m2)
z = narray([-.5, 0., .5, .8])
zm = masked_array(z, mask=[0,1,0,0])
xf = numpy.where(m1, 1.e+20, x)
xm.set_fill_value(1.e+20)
self.d = (x, y, a10, m1, m2, xm, ym, z, zm, xf)
#........................
def check_basic1d(self):
"Test of basic array creation and properties in 1 dimension."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
assert(not isMaskedArray(x))
assert(isMaskedArray(xm))
assert((xm-ym).filled(0).any())
fail_if_equal(xm.mask.astype(int_), ym.mask.astype(int_))
s = x.shape
assert_equal(numpy.shape(xm), s)
assert_equal(xm.shape, s)
assert_equal(xm.dtype, x.dtype)
assert_equal(zm.dtype, z.dtype)
assert_equal(xm.size , reduce(lambda x,y:x*y, s))
assert_equal(count(xm) , len(m1) - reduce(lambda x,y:x+y, m1))
assert_array_equal(xm, xf)
assert_array_equal(filled(xm, 1.e20), xf)
assert_array_equal(x, xm)
#........................
def check_basic2d(self):
"Test of basic array creation and properties in 2 dimensions."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
for s in [(4,3), (6,2)]:
x.shape = s
y.shape = s
xm.shape = s
ym.shape = s
xf.shape = s
assert(not isMaskedArray(x))
assert(isMaskedArray(xm))
assert_equal(shape(xm), s)
assert_equal(xm.shape, s)
assert_equal( xm.size , reduce(lambda x,y:x*y, s))
assert_equal( count(xm) , len(m1) - reduce(lambda x,y:x+y, m1))
assert_equal(xm, xf)
assert_equal(filled(xm, 1.e20), xf)
assert_equal(x, xm)
#........................
def check_basic_arithmetic (self):
"Test of basic arithmetic."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
a2d = array([[1,2],[0,4]])
a2dm = masked_array(a2d, [[0,0],[1,0]])
assert_equal(a2d * a2d, a2d * a2dm)
assert_equal(a2d + a2d, a2d + a2dm)
assert_equal(a2d - a2d, a2d - a2dm)
for s in [(12,), (4,3), (2,6)]:
x = x.reshape(s)
y = y.reshape(s)
xm = xm.reshape(s)
ym = ym.reshape(s)
xf = xf.reshape(s)
assert_equal(-x, -xm)
assert_equal(x + y, xm + ym)
assert_equal(x - y, xm - ym)
assert_equal(x * y, xm * ym)
assert_equal(x / y, xm / ym)
assert_equal(a10 + y, a10 + ym)
assert_equal(a10 - y, a10 - ym)
assert_equal(a10 * y, a10 * ym)
assert_equal(a10 / y, a10 / ym)
assert_equal(x + a10, xm + a10)
assert_equal(x - a10, xm - a10)
assert_equal(x * a10, xm * a10)
assert_equal(x / a10, xm / a10)
assert_equal(x**2, xm**2)
assert_equal(abs(x)**2.5, abs(xm) **2.5)
assert_equal(x**y, xm**ym)
assert_equal(numpy.add(x,y), add(xm, ym))
assert_equal(numpy.subtract(x,y), subtract(xm, ym))
assert_equal(numpy.multiply(x,y), multiply(xm, ym))
assert_equal(numpy.divide(x,y), divide(xm, ym))
#........................
def check_mixed_arithmetic(self):
"Tests mixed arithmetics."
na = narray([1])
ma = array([1])
self.failUnless(isinstance(na + ma, MaskedArray))
self.failUnless(isinstance(ma + na, MaskedArray))
#........................
def check_inplace_arithmetic(self):
"""Test of inplace operations and rich comparisons"""
# addition
x = arange(10)
y = arange(10)
xm = arange(10)
xm[2] = masked
x += 1
assert_equal(x, y+1)
xm += 1
assert_equal(xm, y+1)
# subtraction
x = arange(10)
xm = arange(10)
xm[2] = masked
x -= 1
assert_equal(x, y-1)
xm -= 1
assert_equal(xm, y-1)
# multiplication
x = arange(10)*1.0
xm = arange(10)*1.0
xm[2] = masked
x *= 2.0
assert_equal(x, y*2)
xm *= 2.0
assert_equal(xm, y*2)
# division
x = arange(10)*2
xm = arange(10)*2
xm[2] = masked
x /= 2
assert_equal(x, y)
xm /= 2
assert_equal(xm, y)
# division, pt 2
x = arange(10)*1.0
xm = arange(10)*1.0
xm[2] = masked
x /= 2.0
assert_equal(x, y/2.0)
xm /= arange(10)
assert_equal(xm, ones((10,)))
x = arange(10).astype(float_)
xm = arange(10)
xm[2] = masked
# id1 = id(x.raw_data())
id1 = x.raw_data().ctypes.data
x += 1.
# assert id1 == id(x.raw_data())
assert (id1 == x.raw_data().ctypes.data)
assert_equal(x, y+1.)
# addition w/ array
x = arange(10, dtype=float_)
xm = arange(10, dtype=float_)
xm[2] = masked
m = xm.mask
a = arange(10, dtype=float_)
a[-1] = masked
x += a
xm += a
assert_equal(x,y+a)
assert_equal(xm,y+a)
assert_equal(xm.mask, mask_or(m,a.mask))
# subtraction w/ array
x = arange(10, dtype=float_)
xm = arange(10, dtype=float_)
xm[2] = masked
m = xm.mask
a = arange(10, dtype=float_)
a[-1] = masked
x -= a
xm -= a
assert_equal(x,y-a)
assert_equal(xm,y-a)
assert_equal(xm.mask, mask_or(m,a.mask))
# multiplication w/ array
x = arange(10, dtype=float_)
xm = arange(10, dtype=float_)
xm[2] = masked
m = xm.mask
a = arange(10, dtype=float_)
a[-1] = masked
x *= a
xm *= a
assert_equal(x,y*a)
assert_equal(xm,y*a)
assert_equal(xm.mask, mask_or(m,a.mask))
# division w/ array
x = arange(10, dtype=float_)
xm = arange(10, dtype=float_)
xm[2] = masked
m = xm.mask
a = arange(10, dtype=float_)
a[-1] = masked
x /= a
xm /= a
assert_equal(x,y/a)
assert_equal(xm,y/a)
assert_equal(xm.mask, mask_or(mask_or(m,a.mask), (a==0)))
#..........................
def check_scalararithmetic(self):
"Tests some scalar arithmetics on MaskedArrays."
xm = array(0, mask=1)
assert((1/array(0)).mask)
assert((1 + xm).mask)
assert((-xm).mask)
assert((-xm).mask)
assert(maximum(xm, xm).mask)
assert(minimum(xm, xm).mask)
assert(xm.filled().dtype is xm.data.dtype)
x = array(0, mask=0)
assert_equal(x.filled().ctypes.data, x.ctypes.data)
assert_equal(str(xm), str(masked_print_option))
#.........................
def check_basic_ufuncs (self):
"Test various functions such as sin, cos."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
assert_equal(numpy.cos(x), cos(xm))
assert_equal(numpy.cosh(x), cosh(xm))
assert_equal(numpy.sin(x), sin(xm))
assert_equal(numpy.sinh(x), sinh(xm))
assert_equal(numpy.tan(x), tan(xm))
assert_equal(numpy.tanh(x), tanh(xm))
assert_equal(numpy.sqrt(abs(x)), sqrt(xm))
assert_equal(numpy.log(abs(x)), log(xm))
assert_equal(numpy.log10(abs(x)), log10(xm))
assert_equal(numpy.exp(x), exp(xm))
assert_equal(numpy.arcsin(z), arcsin(zm))
assert_equal(numpy.arccos(z), arccos(zm))
assert_equal(numpy.arctan(z), arctan(zm))
assert_equal(numpy.arctan2(x, y), arctan2(xm, ym))
assert_equal(numpy.absolute(x), absolute(xm))
assert_equal(numpy.equal(x,y), equal(xm, ym))
assert_equal(numpy.not_equal(x,y), not_equal(xm, ym))
assert_equal(numpy.less(x,y), less(xm, ym))
assert_equal(numpy.greater(x,y), greater(xm, ym))
assert_equal(numpy.less_equal(x,y), less_equal(xm, ym))
assert_equal(numpy.greater_equal(x,y), greater_equal(xm, ym))
assert_equal(numpy.conjugate(x), conjugate(xm))
#........................
def check_count_func (self):
"Tests count"
ott = array([0.,1.,2.,3.], mask=[1,0,0,0])
assert( isinstance(count(ott), int))
assert_equal(3, count(ott))
assert_equal(1, count(1))
assert_equal(0, array(1,mask=[1]))
ott = ott.reshape((2,2))
assert isMaskedArray(count(ott,0))
assert isinstance(count(ott), types.IntType)
assert_equal(3, count(ott))
assert getmask(count(ott,0)) is nomask
assert_equal([1,2],count(ott,0))
#........................
def check_minmax_func (self):
"Tests minimum and maximum."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
xr = numpy.ravel(x) #max doesn't work if shaped
xmr = ravel(xm)
assert_equal(max(xr), maximum(xmr)) #true because of careful selection of data
assert_equal(min(xr), minimum(xmr)) #true because of careful selection of data
#
assert_equal(minimum([1,2,3],[4,0,9]), [1,0,3])
assert_equal(maximum([1,2,3],[4,0,9]), [4,2,9])
x = arange(5)
y = arange(5) - 2
x[3] = masked
y[0] = masked
assert_equal(minimum(x,y), where(less(x,y), x, y))
assert_equal(maximum(x,y), where(greater(x,y), x, y))
assert minimum(x) == 0
assert maximum(x) == 4
#
x = arange(4).reshape(2,2)
x[-1,-1] = masked
assert_equal(maximum(x), 2)
def check_minmax_methods(self):
"Additional tests on max/min"
(_, _, _, _, _, xm, _, _, _, _) = self.d
xm.shape = (xm.size,)
assert_equal(xm.max(), 10)
assert(xm[0].max() is masked)
assert(xm[0].max(0) is masked)
assert(xm[0].max(-1) is masked)
assert_equal(xm.min(), -10.)
assert(xm[0].min() is masked)
assert(xm[0].min(0) is masked)
assert(xm[0].min(-1) is masked)
assert_equal(xm.ptp(), 20.)
assert(xm[0].ptp() is masked)
assert(xm[0].ptp(0) is masked)
assert(xm[0].ptp(-1) is masked)
#........................
def check_addsumprod (self):
"Tests add, sum, product."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
assert_equal(numpy.add.reduce(x), add.reduce(x))
assert_equal(numpy.add.accumulate(x), add.accumulate(x))
assert_equal(4, sum(array(4),axis=0))
assert_equal(4, sum(array(4), axis=0))
assert_equal(numpy.sum(x,axis=0), sum(x,axis=0))
assert_equal(numpy.sum(filled(xm,0),axis=0), sum(xm,axis=0))
assert_equal(numpy.sum(x,0), sum(x,0))
assert_equal(numpy.product(x,axis=0), product(x,axis=0))
assert_equal(numpy.product(x,0), product(x,0))
assert_equal(numpy.product(filled(xm,1),axis=0), product(xm,axis=0))
s = (3,4)
x.shape = y.shape = xm.shape = ym.shape = s
if len(s) > 1:
assert_equal(numpy.concatenate((x,y),1), concatenate((xm,ym),1))
assert_equal(numpy.add.reduce(x,1), add.reduce(x,1))
assert_equal(numpy.sum(x,1), sum(x,1))
assert_equal(numpy.product(x,1), product(x,1))
#.........................
def check_concat(self):
"Tests concatenations."
(x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d
# basic concatenation
assert_equal(numpy.concatenate((x,y)), concatenate((xm,ym)))
assert_equal(numpy.concatenate((x,y)), concatenate((x,y)))
assert_equal(numpy.concatenate((x,y)), concatenate((xm,y)))
assert_equal(numpy.concatenate((x,y,x)), concatenate((x,ym,x)))
# Concatenation along an axis
s = (3,4)
x.shape = y.shape = xm.shape = ym.shape = s
assert_equal(xm.mask, numpy.reshape(m1, s))
assert_equal(ym.mask, numpy.reshape(m2, s))
xmym = concatenate((xm,ym),1)
assert_equal(numpy.concatenate((x,y),1), xmym)
assert_equal(numpy.concatenate((xm.mask,ym.mask),1), xmym._mask)
#........................
def check_indexing(self):
"Tests conversions and indexing"
x1 = numpy.array([1,2,4,3])
x2 = array(x1, mask=[1,0,0,0])
x3 = array(x1, mask=[0,1,0,1])
x4 = array(x1)
# test conversion to strings
junk, garbage = str(x2), repr(x2)
assert_equal(numpy.sort(x1),sort(x2,endwith=False))
# tests of indexing
assert type(x2[1]) is type(x1[1])
assert x1[1] == x2[1]
assert x2[0] is masked
assert_equal(x1[2],x2[2])
assert_equal(x1[2:5],x2[2:5])
assert_equal(x1[:],x2[:])
assert_equal(x1[1:], x3[1:])
x1[2] = 9
x2[2] = 9
assert_equal(x1,x2)
x1[1:3] = 99
x2[1:3] = 99
assert_equal(x1,x2)
x2[1] = masked
assert_equal(x1,x2)
x2[1:3] = masked
assert_equal(x1,x2)
x2[:] = x1
x2[1] = masked
assert allequal(getmask(x2),array([0,1,0,0]))
x3[:] = masked_array([1,2,3,4],[0,1,1,0])
assert allequal(getmask(x3), array([0,1,1,0]))
x4[:] = masked_array([1,2,3,4],[0,1,1,0])
assert allequal(getmask(x4), array([0,1,1,0]))
assert allequal(x4, array([1,2,3,4]))
x1 = numpy.arange(5)*1.0
x2 = masked_values(x1, 3.0)
assert_equal(x1,x2)
assert allequal(array([0,0,0,1,0],MaskType), x2.mask)
#FIXME: Well, eh, fill_value is now a property assert_equal(3.0, x2.fill_value())
assert_equal(3.0, x2.fill_value)
x1 = array([1,'hello',2,3],object)
x2 = numpy.array([1,'hello',2,3],object)
s1 = x1[1]
s2 = x2[1]
assert_equal(type(s2), str)
assert_equal(type(s1), str)
assert_equal(s1, s2)
assert x1[1:1].shape == (0,)
#........................
def check_copy(self):
"Tests of some subtle points of copying and sizing."
n = [0,0,1,0,0]
m = make_mask(n)
m2 = make_mask(m)
assert(m is m2)
m3 = make_mask(m, copy=1)
assert(m is not m3)
x1 = numpy.arange(5)
y1 = array(x1, mask=m)
#assert( y1._data is x1)
assert_equal(y1._data.__array_interface__, x1.__array_interface__)
assert( allequal(x1,y1.raw_data()))
#assert( y1.mask is m)
assert_equal(y1._mask.__array_interface__, m.__array_interface__)
y1a = array(y1)
#assert( y1a.raw_data() is y1.raw_data())
assert( y1a._data.__array_interface__ == y1._data.__array_interface__)
assert( y1a.mask is y1.mask)
y2 = array(x1, mask=m)
#assert( y2.raw_data() is x1)
assert (y2._data.__array_interface__ == x1.__array_interface__)
#assert( y2.mask is m)
assert (y2._mask.__array_interface__ == m.__array_interface__)
assert( y2[2] is masked)
y2[2] = 9
assert( y2[2] is not masked)
#assert( y2.mask is not m)
assert (y2._mask.__array_interface__ != m.__array_interface__)
assert( allequal(y2.mask, 0))
y3 = array(x1*1.0, mask=m)
assert(filled(y3).dtype is (x1*1.0).dtype)
x4 = arange(4)
x4[2] = masked
y4 = resize(x4, (8,))
assert_equal(concatenate([x4,x4]), y4)
assert_equal(getmask(y4),[0,0,1,0,0,0,1,0])
y5 = repeat(x4, (2,2,2,2), axis=0)
assert_equal(y5, [0,0,1,1,2,2,3,3])
y6 = repeat(x4, 2, axis=0)
assert_equal(y5, y6)
y7 = x4.repeat((2,2,2,2), axis=0)
assert_equal(y5,y7)
y8 = x4.repeat(2,0)
assert_equal(y5,y8)
y9 = x4.copy()
assert_equal(y9._data, x4._data)
assert_equal(y9._mask, x4._mask)
#
x = masked_array([1,2,3], mask=[0,1,0])
# Copy is False by default
y = masked_array(x)
# assert_equal(id(y._data), id(x._data))
# assert_equal(id(y._mask), id(x._mask))
assert_equal(y._data.ctypes.data, x._data.ctypes.data)
assert_equal(y._mask.ctypes.data, x._mask.ctypes.data)
y = masked_array(x, copy=True)
# assert_not_equal(id(y._data), id(x._data))
# assert_not_equal(id(y._mask), id(x._mask))
assert_not_equal(y._data.ctypes.data, x._data.ctypes.data)
assert_not_equal(y._mask.ctypes.data, x._mask.ctypes.data)
#........................
def check_oddfeatures_1(self):
"Test of other odd features"
x = arange(20)
x = x.reshape(4,5)
x.flat[5] = 12
assert x[1,0] == 12
z = x + 10j * x
assert_equal(z.real, x)
assert_equal(z.imag, 10*x)
assert_equal((z*conjugate(z)).real, 101*x*x)
z.imag[...] = 0.0
x = arange(10)
x[3] = masked
assert str(x[3]) == str(masked)
c = x >= 8
assert count(where(c,masked,masked)) == 0
assert shape(where(c,masked,masked)) == c.shape
#
z = where(c , x, masked)
assert z.dtype is x.dtype
assert z[3] is masked
assert z[4] is masked
assert z[7] is masked
assert z[8] is not masked
assert z[9] is not masked
assert_equal(x,z)
#
z = where(c , masked, x)
assert z.dtype is x.dtype
assert z[3] is masked
assert z[4] is not masked
assert z[7] is not masked
assert z[8] is masked
assert z[9] is masked
#
z = masked_where(c, x)
assert z.dtype is x.dtype
assert z[3] is masked
assert z[4] is not masked
assert z[7] is not masked
assert z[8] is masked
assert z[9] is masked
assert_equal(x,z)
#
#........................
def check_oddfeatures_2(self):
"Tests some more features."
x = array([1.,2.,3.,4.,5.])
c = array([1,1,1,0,0])
x[2] = masked
z = where(c, x, -x)
assert_equal(z, [1.,2.,0., -4., -5])
c[0] = masked
z = where(c, x, -x)
assert_equal(z, [1.,2.,0., -4., -5])
assert z[0] is masked
assert z[1] is not masked
assert z[2] is masked
#
x = arange(6)
x[5] = masked
y = arange(6)*10
y[2] = masked
c = array([1,1,1,0,0,0], mask=[1,0,0,0,0,0])
cm = c.filled(1)
z = where(c,x,y)
zm = where(cm,x,y)
assert_equal(z, zm)
assert getmask(zm) is nomask
assert_equal(zm, [0,1,2,30,40,50])
z = where(c, masked, 1)
assert_equal(z, [99,99,99,1,1,1])
z = where(c, 1, masked)
assert_equal(z, [99, 1, 1, 99, 99, 99])
#........................
def check_oddfeatures_3(self):
"""Tests some generic features."""
atest = ones((10,10,10), dtype=float_)
btest = zeros(atest.shape, MaskType)
ctest = masked_where(btest,atest)
assert_equal(atest,ctest)
#........................
def check_maskingfunctions(self):
"Tests masking functions."
x = array([1.,2.,3.,4.,5.])
x[2] = masked
assert_equal(masked_where(greater(x, 2), x), masked_greater(x,2))
assert_equal(masked_where(greater_equal(x, 2), x), masked_greater_equal(x,2))
assert_equal(masked_where(less(x, 2), x), masked_less(x,2))
assert_equal(masked_where(less_equal(x, 2), x), masked_less_equal(x,2))
assert_equal(masked_where(not_equal(x, 2), x), masked_not_equal(x,2))
assert_equal(masked_where(equal(x, 2), x), masked_equal(x,2))
assert_equal(masked_where(not_equal(x,2), x), masked_not_equal(x,2))
assert_equal(masked_inside(range(5), 1, 3), [0, 199, 199, 199, 4])
assert_equal(masked_outside(range(5), 1, 3),[199,1,2,3,199])
assert_equal(masked_inside(array(range(5), mask=[1,0,0,0,0]), 1, 3).mask, [1,1,1,1,0])
assert_equal(masked_outside(array(range(5), mask=[0,1,0,0,0]), 1, 3).mask, [1,1,0,0,1])
assert_equal(masked_equal(array(range(5), mask=[1,0,0,0,0]), 2).mask, [1,0,1,0,0])
assert_equal(masked_not_equal(array([2,2,1,2,1], mask=[1,0,0,0,0]), 2).mask, [1,0,1,0,1])
assert_equal(masked_where([1,1,0,0,0], [1,2,3,4,5]), [99,99,3,4,5])
#........................
def check_TakeTransposeInnerOuter(self):
"Test of take, transpose, inner, outer products"
x = arange(24)
y = numpy.arange(24)
x[5:6] = masked
x = x.reshape(2,3,4)
y = y.reshape(2,3,4)
assert_equal(numpy.transpose(y,(2,0,1)), transpose(x,(2,0,1)))
assert_equal(numpy.take(y, (2,0,1), 1), take(x, (2,0,1), 1))
assert_equal(numpy.inner(filled(x,0),filled(y,0)),
inner(x, y))
assert_equal(numpy.outer(filled(x,0),filled(y,0)),
outer(x, y))
y = array(['abc', 1, 'def', 2, 3], object)
y[2] = masked
t = take(y,[0,3,4])
assert t[0] == 'abc'
assert t[1] == 2
assert t[2] == 3
#.......................
def check_maskedelement(self):
"Test of masked element"
x = arange(6)
x[1] = masked
assert(str(masked) == '--')
assert(x[1] is masked)
assert_equal(filled(x[1], 0), 0)
# don't know why these should raise an exception...
#self.failUnlessRaises(Exception, lambda x,y: x+y, masked, masked)
#self.failUnlessRaises(Exception, lambda x,y: x+y, masked, 2)
#self.failUnlessRaises(Exception, lambda x,y: x+y, masked, xx)
#self.failUnlessRaises(Exception, lambda x,y: x+y, xx, masked)
#........................
def check_scalar(self):
"Checks masking a scalar"
x = masked_array(0)
assert_equal(str(x), '0')
x = masked_array(0,mask=True)
assert_equal(str(x), str(masked_print_option))
x = masked_array(0, mask=False)
assert_equal(str(x), '0')
#........................
def check_usingmasked(self):
"Checks that there's no collapsing to masked"
x = masked_array([1,2])
y = x * masked
assert_equal(y.shape, x.shape)
assert_equal(y._mask, [True, True])
y = x + masked
assert_equal(y.shape, x.shape)
assert_equal(y._mask, [True, True])
#........................
def check_topython(self):
"Tests some communication issues with Python."
assert_equal(1, int(array(1)))
assert_equal(1.0, float(array(1)))
assert_equal(1, int(array([[[1]]])))
assert_equal(1.0, float(array([[1]])))
self.failUnlessRaises(ValueError, float, array([1,1]))
assert numpy.isnan(float(array([1],mask=[1])))
#TODO: Check how bool works...
#TODO: self.failUnless(bool(array([0,1])))
#TODO: self.failUnless(bool(array([0,0],mask=[0,1])))
#TODO: self.failIf(bool(array([0,0])))
#TODO: self.failIf(bool(array([0,0],mask=[0,0])))
#........................
def check_arraymethods(self):
"Tests some MaskedArray methods."
a = array([1,3,2])
b = array([1,3,2], mask=[1,0,1])
assert_equal(a.any(), a.data.any())
assert_equal(a.all(), a.data.all())
assert_equal(a.argmax(), a.data.argmax())
assert_equal(a.argmin(), a.data.argmin())
assert_equal(a.choose(0,1,2,3,4), a.data.choose(0,1,2,3,4))
assert_equal(a.compress([1,0,1]), a.data.compress([1,0,1]))
assert_equal(a.conj(), a.data.conj())
assert_equal(a.conjugate(), a.data.conjugate())
#
m = array([[1,2],[3,4]])
assert_equal(m.diagonal(), m.data.diagonal())
assert_equal(a.sum(), a.data.sum())
assert_equal(a.take([1,2]), a.data.take([1,2]))
assert_equal(m.transpose(), m.data.transpose())
#........................
def check_basicattributes(self):
"Tests some basic array attributes."
a = array([1,3,2])
b = array([1,3,2], mask=[1,0,1])
assert_equal(a.ndim, 1)
assert_equal(b.ndim, 1)
assert_equal(a.size, 3)
assert_equal(b.size, 3)
assert_equal(a.shape, (3,))
assert_equal(b.shape, (3,))
#........................
def check_single_element_subscript(self):
"Tests single element subscripts of Maskedarrays."
a = array([1,3,2])
b = array([1,3,2], mask=[1,0,1])
assert_equal(a[0].shape, ())
assert_equal(b[0].shape, ())
assert_equal(b[1].shape, ())
#........................
def check_maskcreation(self):
"Tests how masks are initialized at the creation of Maskedarrays."
data = arange(24, dtype=float_)
data[[3,6,15]] = masked
dma_1 = MaskedArray(data)
assert_equal(dma_1.mask, data.mask)
dma_2 = MaskedArray(dma_1)
assert_equal(dma_2.mask, dma_1.mask)
dma_3 = MaskedArray(dma_1, mask=[1,0,0,0]*6)
fail_if_equal(dma_3.mask, dma_1.mask)
def check_backwards(self):
"Tests backward compatibility with numpy.core.ma"
import numpy.core.ma as nma
x = nma.arange(5)
x[2] = nma.masked
X = masked_array(x, mask=x._mask)
assert_equal(X._mask, x.mask)
assert_equal(X._data, x._data)
X = masked_array(x)
assert_equal(X._data, x._data)
assert_equal(X._mask, x.mask)
assert_equal(getmask(x), [0,0,1,0,0])
def check_pickling(self):
"Tests pickling"
import cPickle
a = arange(10)
a[::3] = masked
a.fill_value = 999
a_pickled = cPickle.loads(a.dumps())
assert_equal(a_pickled._mask, a._mask)
assert_equal(a_pickled._data, a._data)
assert_equal(a_pickled.fill_value, 999)
#
a = array(numpy.matrix(range(10)), mask=[1,0,1,0,0]*2)
a_pickled = cPickle.loads(a.dumps())
assert_equal(a_pickled._mask, a._mask)
assert_equal(a_pickled, a)
assert(isinstance(a_pickled._data,numpy.matrix))
#...............................................................................
class test_ufuncs(NumpyTestCase):
"Test class for the application of ufuncs on MaskedArrays."
def setUp(self):
"Base data definition."
self.d = (array([1.0, 0, -1, pi/2]*2, mask=[0,1]+[0]*6),
array([1.0, 0, -1, pi/2]*2, mask=[1,0]+[0]*6),)
def check_testUfuncRegression(self):
"Tests new ufuncs on MaskedArrays."
for f in ['sqrt', 'log', 'log10', 'exp', 'conjugate',
'sin', 'cos', 'tan',
'arcsin', 'arccos', 'arctan',
'sinh', 'cosh', 'tanh',
'arcsinh',
'arccosh',
'arctanh',
'absolute', 'fabs', 'negative',
# 'nonzero', 'around',
'floor', 'ceil',
# 'sometrue', 'alltrue',
'logical_not',
'add', 'subtract', 'multiply',
'divide', 'true_divide', 'floor_divide',
'remainder', 'fmod', 'hypot', 'arctan2',
'equal', 'not_equal', 'less_equal', 'greater_equal',
'less', 'greater',
'logical_and', 'logical_or', 'logical_xor',
]:
#print f
try:
uf = getattr(umath, f)
except AttributeError:
uf = getattr(fromnumeric, f)
mf = getattr(coremodule, f)
args = self.d[:uf.nin]
ur = uf(*args)
mr = mf(*args)
assert_equal(ur.filled(0), mr.filled(0), f)
assert_mask_equal(ur.mask, mr.mask)
#........................
def test_reduce(self):
"Tests reduce on MaskedArrays."
a = self.d[0]
assert(not alltrue(a,axis=0))
assert(sometrue(a,axis=0))
assert_equal(sum(a[:3],axis=0), 0)
assert_equal(product(a,axis=0), 0)
#........................
def test_minmax(self):
"Tests extrema on MaskedArrays."
a = arange(1,13).reshape(3,4)
amask = masked_where(a < 5,a)
assert_equal(amask.max(), a.max())
assert_equal(amask.min(), 5)
assert_equal(amask.max(0), a.max(0))
assert_equal(amask.min(0), [5,6,7,8])
assert(amask.max(1)[0].mask)
assert(amask.min(1)[0].mask)
#...............................................................................
class test_array_methods(NumpyTestCase):
"Test class for miscellaneous MaskedArrays methods."
def setUp(self):
"Base data definition."
x = numpy.array([ 8.375, 7.545, 8.828, 8.5 , 1.757, 5.928,
8.43 , 7.78 , 9.865, 5.878, 8.979, 4.732,
3.012, 6.022, 5.095, 3.116, 5.238, 3.957,
6.04 , 9.63 , 7.712, 3.382, 4.489, 6.479,
7.189, 9.645, 5.395, 4.961, 9.894, 2.893,
7.357, 9.828, 6.272, 3.758, 6.693, 0.993])
X = x.reshape(6,6)
XX = x.reshape(3,2,2,3)
m = numpy.array([0, 1, 0, 1, 0, 0,
1, 0, 1, 1, 0, 1,
0, 0, 0, 1, 0, 1,
0, 0, 0, 1, 1, 1,
1, 0, 0, 1, 0, 0,
0, 0, 1, 0, 1, 0])
mx = array(data=x,mask=m)
mX = array(data=X,mask=m.reshape(X.shape))
mXX = array(data=XX,mask=m.reshape(XX.shape))
m2 = numpy.array([1, 1, 0, 1, 0, 0,
1, 1, 1, 1, 0, 1,
0, 0, 1, 1, 0, 1,
0, 0, 0, 1, 1, 1,
1, 0, 0, 1, 1, 0,
0, 0, 1, 0, 1, 1])
m2x = array(data=x,mask=m2)
m2X = array(data=X,mask=m2.reshape(X.shape))
m2XX = array(data=XX,mask=m2.reshape(XX.shape))
self.d = (x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX)
#------------------------------------------------------
def check_trace(self):
"Tests trace on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
mXdiag = mX.diagonal()
assert_equal(mX.trace(), mX.diagonal().compressed().sum())
assert_almost_equal(mX.trace(),
X.trace() - sum(mXdiag.mask*X.diagonal(),axis=0))
def check_clip(self):
"Tests clip on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
clipped = mx.clip(2,8)
assert_equal(clipped.mask,mx.mask)
assert_equal(clipped.data,x.clip(2,8))
assert_equal(clipped.data,mx.data.clip(2,8))
def check_ptp(self):
"Tests ptp on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
(n,m) = X.shape
assert_equal(mx.ptp(),mx.compressed().ptp())
rows = numpy.zeros(n,numpy.float_)
cols = numpy.zeros(m,numpy.float_)
for k in range(m):
cols[k] = mX[:,k].compressed().ptp()
for k in range(n):
rows[k] = mX[k].compressed().ptp()
assert_equal(mX.ptp(0),cols)
assert_equal(mX.ptp(1),rows)
def check_swapaxes(self):
"Tests swapaxes on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
mXswapped = mX.swapaxes(0,1)
assert_equal(mXswapped[-1],mX[:,-1])
mXXswapped = mXX.swapaxes(0,2)
assert_equal(mXXswapped.shape,(2,2,3,3))
def check_cumsumprod(self):
"Tests cumsum & cumprod on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
mXcp = mX.cumsum(0)
assert_equal(mXcp.data,mX.filled(0).cumsum(0))
mXcp = mX.cumsum(1)
assert_equal(mXcp.data,mX.filled(0).cumsum(1))
#
mXcp = mX.cumprod(0)
assert_equal(mXcp.data,mX.filled(1).cumprod(0))
mXcp = mX.cumprod(1)
assert_equal(mXcp.data,mX.filled(1).cumprod(1))
def check_varstd(self):
"Tests var & std on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
assert_almost_equal(mX.var(axis=None),mX.compressed().var())
assert_almost_equal(mX.std(axis=None),mX.compressed().std())
assert_equal(mXX.var(axis=3).shape,XX.var(axis=3).shape)
assert_equal(mX.var().shape,X.var().shape)
(mXvar0,mXvar1) = (mX.var(axis=0), mX.var(axis=1))
for k in range(6):
assert_almost_equal(mXvar1[k],mX[k].compressed().var())
assert_almost_equal(mXvar0[k],mX[:,k].compressed().var())
assert_almost_equal(numpy.sqrt(mXvar0[k]), mX[:,k].compressed().std())
def check_argmin(self):
"Tests argmin & argmax on MaskedArrays."
(x,X,XX,m,mx,mX,mXX,m2x,m2X,m2XX) = self.d
#
assert_equal(mx.argmin(),35)
assert_equal(mX.argmin(),35)
assert_equal(m2x.argmin(),4)
assert_equal(m2X.argmin(),4)
assert_equal(mx.argmax(),28)
assert_equal(mX.argmax(),28)
assert_equal(m2x.argmax(),31)
assert_equal(m2X.argmax(),31)
#
assert_equal(mX.argmin(0), [2,2,2,5,0,5])
assert_equal(m2X.argmin(0), [2,2,4,5,0,4])
assert_equal(mX.argmax(0), [0,5,0,5,4,0])
assert_equal(m2X.argmax(0), [5,5,0,5,1,0])
#
assert_equal(mX.argmin(1), [4,1,0,0,5,5,])
assert_equal(m2X.argmin(1), [4,4,0,0,5,3])
assert_equal(mX.argmax(1), [2,4,1,1,4,1])
assert_equal(m2X.argmax(1), [2,4,1,1,1,1])
def check_put(self):
"Tests put."
d = arange(5)
n = [0,0,0,1,1]
m = make_mask(n)
x = array(d, mask = m)
assert( x[3] is masked)
assert( x[4] is masked)
x[[1,4]] = [10,40]
assert( x.mask is not m)
assert( x[3] is masked)
assert( x[4] is not masked)
assert_equal(x, [0,10,2,-1,40])
#
x = masked_array(arange(10), mask=[1,0,0,0,0]*2)
i = [0,2,4,6]
x.put(i, [6,4,2,0])
assert_equal(x, asarray([6,1,4,3,2,5,0,7,8,9,]))
assert_equal(x.mask, [0,0,0,0,0,1,0,0,0,0])
x.put(i, masked_array([0,2,4,6],[1,0,1,0]))
assert_array_equal(x, [0,1,2,3,4,5,6,7,8,9,])
assert_equal(x.mask, [1,0,0,0,1,1,0,0,0,0])
#
x = masked_array(arange(10), mask=[1,0,0,0,0]*2)
put(x, i, [6,4,2,0])
assert_equal(x, asarray([6,1,4,3,2,5,0,7,8,9,]))
assert_equal(x.mask, [0,0,0,0,0,1,0,0,0,0])
put(x, i, masked_array([0,2,4,6],[1,0,1,0]))
assert_array_equal(x, [0,1,2,3,4,5,6,7,8,9,])
assert_equal(x.mask, [1,0,0,0,1,1,0,0,0,0])
def check_put_hardmask(self):
"Tests put on hardmask"
d = arange(5)
n = [0,0,0,1,1]
m = make_mask(n)
xh = array(d+1, mask = m, hard_mask=True, copy=True)
xh.put([4,2,0,1,3],[1,2,3,4,5])
assert_equal(xh._data, [3,4,2,4,5])
def check_take(self):
"Tests take"
x = masked_array([10,20,30,40],[0,1,0,1])
assert_equal(x.take([0,0,3]), masked_array([10, 10, 40], [0,0,1]) )
assert_equal(x.take([0,0,3]), x[[0,0,3]])
assert_equal(x.take([[0,1],[0,1]]),
masked_array([[10,20],[10,20]], [[0,1],[0,1]]) )
#
x = array([[10,20,30],[40,50,60]], mask=[[0,0,1],[1,0,0,]])
assert_equal(x.take([0,2], axis=1),
array([[10,30],[40,60]], mask=[[0,1],[1,0]]))
assert_equal(take(x, [0,2], axis=1),
array([[10,30],[40,60]], mask=[[0,1],[1,0]]))
#........................
def check_anyall(self):
"""Checks the any/all methods/functions."""
x = numpy.array([[ 0.13, 0.26, 0.90],
[ 0.28, 0.33, 0.63],
[ 0.31, 0.87, 0.70]])
m = numpy.array([[ True, False, False],
[False, False, False],
[True, True, False]], dtype=numpy.bool_)
mx = masked_array(x, mask=m)
xbig = numpy.array([[False, False, True],
[False, False, True],
[False, True, True]], dtype=numpy.bool_)
mxbig = (mx > 0.5)
mxsmall = (mx < 0.5)
#
assert (mxbig.all()==False)
assert (mxbig.any()==True)
assert_equal(mxbig.all(0),[False, False, True])
assert_equal(mxbig.all(1), [False, False, True])
assert_equal(mxbig.any(0),[False, False, True])
assert_equal(mxbig.any(1), [True, True, True])
#
assert (mxsmall.all()==False)
assert (mxsmall.any()==True)
assert_equal(mxsmall.all(0), [True, True, False])
assert_equal(mxsmall.all(1), [False, False, False])
assert_equal(mxsmall.any(0), [True, True, False])
assert_equal(mxsmall.any(1), [True, True, False])
#
X = numpy.matrix(x)
mX = masked_array(X, mask=m)
mXbig = (mX > 0.5)
mXsmall = (mX < 0.5)
#
assert (mXbig.all()==False)
assert (mXbig.any()==True)
assert_equal(mXbig.all(0), numpy.matrix([False, False, True]))
assert_equal(mXbig.all(1), numpy.matrix([False, False, True]).T)
assert_equal(mXbig.any(0), numpy.matrix([False, False, True]))
assert_equal(mXbig.any(1), numpy.matrix([ True, True, True]).T)
#
assert (mXsmall.all()==False)
assert (mXsmall.any()==True)
assert_equal(mXsmall.all(0), numpy.matrix([True, True, False]))
assert_equal(mXsmall.all(1), numpy.matrix([False, False, False]).T)
assert_equal(mXsmall.any(0), numpy.matrix([True, True, False]))
assert_equal(mXsmall.any(1), numpy.matrix([True, True, False]).T)
def check_keepmask(self):
"Tests the keep mask flag"
x = masked_array([1,2,3], mask=[1,0,0])
mx = masked_array(x)
assert_equal(mx.mask, x.mask)
mx = masked_array(x, mask=[0,1,0], keep_mask=False)
assert_equal(mx.mask, [0,1,0])
mx = masked_array(x, mask=[0,1,0], keep_mask=True)
assert_equal(mx.mask, [1,1,0])
# We default to true
mx = masked_array(x, mask=[0,1,0])
assert_equal(mx.mask, [1,1,0])
def check_hardmask(self):
"Test hard_mask"
d = arange(5)
n = [0,0,0,1,1]
m = make_mask(n)
xh = array(d, mask = m, hard_mask=True)
# We need to copy, to avoid updating d in xh!
xs = array(d, mask = m, hard_mask=False, copy=True)
xh[[1,4]] = [10,40]
xs[[1,4]] = [10,40]
assert_equal(xh._data, [0,10,2,3,4])
assert_equal(xs._data, [0,10,2,3,40])
#assert_equal(xh.mask.ctypes.data, m.ctypes.data)
assert_equal(xs.mask, [0,0,0,1,0])
assert(xh._hardmask)
assert(not xs._hardmask)
xh[1:4] = [10,20,30]
xs[1:4] = [10,20,30]
assert_equal(xh._data, [0,10,20,3,4])
assert_equal(xs._data, [0,10,20,30,40])
#assert_equal(xh.mask.ctypes.data, m.ctypes.data)
assert_equal(xs.mask, nomask)
xh[0] = masked
xs[0] = masked
assert_equal(xh.mask, [1,0,0,1,1])
assert_equal(xs.mask, [1,0,0,0,0])
xh[:] = 1
xs[:] = 1
assert_equal(xh._data, [0,1,1,3,4])
assert_equal(xs._data, [1,1,1,1,1])
assert_equal(xh.mask, [1,0,0,1,1])
assert_equal(xs.mask, nomask)
# Switch to soft mask
xh.soften_mask()
xh[:] = arange(5)
assert_equal(xh._data, [0,1,2,3,4])
assert_equal(xh.mask, nomask)
# Switch back to hard mask
xh.harden_mask()
xh[xh<3] = masked
assert_equal(xh._data, [0,1,2,3,4])
assert_equal(xh._mask, [1,1,1,0,0])
xh[filled(xh>1,False)] = 5
assert_equal(xh._data, [0,1,2,5,5])
assert_equal(xh._mask, [1,1,1,0,0])
#
xh = array([[1,2],[3,4]], mask = [[1,0],[0,0]], hard_mask=True)
xh[0] = 0
assert_equal(xh._data, [[1,0],[3,4]])
assert_equal(xh._mask, [[1,0],[0,0]])
xh[-1,-1] = 5
assert_equal(xh._data, [[1,0],[3,5]])
assert_equal(xh._mask, [[1,0],[0,0]])
xh[filled(xh<5,False)] = 2
assert_equal(xh._data, [[1,2],[2,5]])
assert_equal(xh._mask, [[1,0],[0,0]])
#
"Another test of hardmask"
d = arange(5)
n = [0,0,0,1,1]
m = make_mask(n)
xh = array(d, mask = m, hard_mask=True)
xh[4:5] = 999
#assert_equal(xh.mask.ctypes.data, m.ctypes.data)
xh[0:1] = 999
assert_equal(xh._data,[999,1,2,3,4])
def check_smallmask(self):
"Checks the behaviour of _smallmask"
a = arange(10)
a[1] = masked
a[1] = 1
assert_equal(a._mask, nomask)
a = arange(10)
a._smallmask = False
a[1] = masked
a[1] = 1
assert_equal(a._mask, zeros(10))
def check_sort(self):
"Test sort"
x = array([1,4,2,3],mask=[0,1,0,0],dtype=numpy.uint8)
#
sortedx = sort(x)
assert_equal(sortedx._data,[1,2,3,4])
assert_equal(sortedx._mask,[0,0,0,1])
#
sortedx = sort(x, endwith=False)
assert_equal(sortedx._data, [4,1,2,3])
assert_equal(sortedx._mask, [1,0,0,0])
#
x.sort()
assert_equal(x._data,[1,2,3,4])
assert_equal(x._mask,[0,0,0,1])
#
x = array([1,4,2,3],mask=[0,1,0,0],dtype=numpy.uint8)
x.sort(endwith=False)
assert_equal(x._data, [4,1,2,3])
assert_equal(x._mask, [1,0,0,0])
#
x = [1,4,2,3]
sortedx = sort(x)
assert(not isinstance(sorted, MaskedArray))
#
x = array([0,1,-1,-2,2], mask=nomask, dtype=numpy.int8)
sortedx = sort(x, endwith=False)
assert_equal(sortedx._data, [-2,-1,0,1,2])
x = array([0,1,-1,-2,2], mask=[0,1,0,0,1], dtype=numpy.int8)
sortedx = sort(x, endwith=False)
assert_equal(sortedx._data, [1,2,-2,-1,0])
assert_equal(sortedx._mask, [1,1,0,0,0])
def check_sort_2d(self):
"Check sort of 2D array."
# 2D array w/o mask
a = masked_array([[8,4,1],[2,0,9]])
a.sort(0)
assert_equal(a, [[2,0,1],[8,4,9]])
a = masked_array([[8,4,1],[2,0,9]])
a.sort(1)
assert_equal(a, [[1,4,8],[0,2,9]])
# 2D array w/mask
a = masked_array([[8,4,1],[2,0,9]], mask=[[1,0,0],[0,0,1]])
a.sort(0)
assert_equal(a, [[2,0,1],[8,4,9]])
assert_equal(a._mask, [[0,0,0],[1,0,1]])
a = masked_array([[8,4,1],[2,0,9]], mask=[[1,0,0],[0,0,1]])
a.sort(1)
assert_equal(a, [[1,4,8],[0,2,9]])
assert_equal(a._mask, [[0,0,1],[0,0,1]])
# 3D
a = masked_array([[[7, 8, 9],[4, 5, 6],[1, 2, 3]],
[[1, 2, 3],[7, 8, 9],[4, 5, 6]],
[[7, 8, 9],[1, 2, 3],[4, 5, 6]],
[[4, 5, 6],[1, 2, 3],[7, 8, 9]]])
a[a%4==0] = masked
am = a.copy()
an = a.filled(99)
am.sort(0)
an.sort(0)
assert_equal(am, an)
am = a.copy()
an = a.filled(99)
am.sort(1)
an.sort(1)
assert_equal(am, an)
am = a.copy()
an = a.filled(99)
am.sort(2)
an.sort(2)
assert_equal(am, an)
def check_ravel(self):
"Tests ravel"
a = array([[1,2,3,4,5]], mask=[[0,1,0,0,0]])
aravel = a.ravel()
assert_equal(a._mask.shape, a.shape)
a = array([0,0], mask=[1,1])
aravel = a.ravel()
assert_equal(a._mask.shape, a.shape)
a = array(numpy.matrix([1,2,3,4,5]), mask=[[0,1,0,0,0]])
aravel = a.ravel()
assert_equal(a.shape,(1,5))
assert_equal(a._mask.shape, a.shape)
# Checs that small_mask is preserved
a = array([1,2,3,4],mask=[0,0,0,0],small_mask=False)
assert_equal(a.ravel()._mask, [0,0,0,0])
def check_reshape(self):
"Tests reshape"
x = arange(4)
x[0] = masked
y = x.reshape(2,2)
assert_equal(y.shape, (2,2,))
assert_equal(y._mask.shape, (2,2,))
assert_equal(x.shape, (4,))
assert_equal(x._mask.shape, (4,))
def check_compressed(self):
"Tests compressed"
a = array([1,2,3,4],mask=[0,0,0,0],small_mask=False)
b = a.compressed()
assert_equal(b, a)
assert_equal(b._mask, a._mask)
a[0] = masked
b = a.compressed()
assert_equal(b._data, [2,3,4])
assert_equal(b._mask, [0,0,0])
a._smallmask = True
b = a.compressed()
assert_equal(b._data, [2,3,4])
assert_equal(b._mask, nomask)
def check_tolist(self):
"Tests to list"
x = array(numpy.arange(12))
x[[1,-2]] = masked
xlist = x.tolist()
assert(xlist[1] is None)
assert(xlist[-2] is None)
#
x.shape = (3,4)
xlist = x.tolist()
#
assert_equal(xlist[0],[0,None,2,3])
assert_equal(xlist[1],[4,5,6,7])
assert_equal(xlist[2],[8,9,None,11])
#..............................................................................
###############################################################################
#------------------------------------------------------------------------------
if __name__ == "__main__":
NumpyTest().run()
|