public class org.apache.commons.math3.stat.inference.MannWhitneyUTest
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.apache.commons.math3.stat.inference.MannWhitneyUTest
super_class: java.lang.Object
{
private org.apache.commons.math3.stat.ranking.NaturalRanking naturalRanking;
descriptor: Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
flags: (0x0002) ACC_PRIVATE
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=1, args_size=1
start local 0 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
new org.apache.commons.math3.stat.ranking.NaturalRanking
dup
getstatic org.apache.commons.math3.stat.ranking.NaNStrategy.FIXED:Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
2: getstatic org.apache.commons.math3.stat.ranking.TiesStrategy.AVERAGE:Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
invokespecial org.apache.commons.math3.stat.ranking.NaturalRanking.<init>:(Lorg/apache/commons/math3/stat/ranking/NaNStrategy;Lorg/apache/commons/math3/stat/ranking/TiesStrategy;)V
3: putfield org.apache.commons.math3.stat.inference.MannWhitneyUTest.naturalRanking:Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
4: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
public void <init>(org.apache.commons.math3.stat.ranking.NaNStrategy, org.apache.commons.math3.stat.ranking.TiesStrategy);
descriptor: (Lorg/apache/commons/math3/stat/ranking/NaNStrategy;Lorg/apache/commons/math3/stat/ranking/TiesStrategy;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
new org.apache.commons.math3.stat.ranking.NaturalRanking
dup
aload 1
aload 2
invokespecial org.apache.commons.math3.stat.ranking.NaturalRanking.<init>:(Lorg/apache/commons/math3/stat/ranking/NaNStrategy;Lorg/apache/commons/math3/stat/ranking/TiesStrategy;)V
putfield org.apache.commons.math3.stat.inference.MannWhitneyUTest.naturalRanking:Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
2: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
0 3 1 nanStrategy Lorg/apache/commons/math3/stat/ranking/NaNStrategy;
0 3 2 tiesStrategy Lorg/apache/commons/math3/stat/ranking/TiesStrategy;
MethodParameters:
Name Flags
nanStrategy final
tiesStrategy final
private void ensureDataConformance(double[], double[]);
descriptor: ([D[D)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 1
ifnull 2
1: aload 2
ifnonnull 3
2: StackMap locals:
StackMap stack:
new org.apache.commons.math3.exception.NullArgumentException
dup
invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:()V
athrow
3: StackMap locals:
StackMap stack:
aload 1
arraylength
ifeq 5
4: aload 2
arraylength
ifne 6
5: StackMap locals:
StackMap stack:
new org.apache.commons.math3.exception.NoDataException
dup
invokespecial org.apache.commons.math3.exception.NoDataException.<init>:()V
athrow
6: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
0 7 1 x [D
0 7 2 y [D
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException
MethodParameters:
Name Flags
x final
y final
private double[] concatenateSamples(double[], double[]);
descriptor: ([D[D)[D
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 1
arraylength
aload 2
arraylength
iadd
newarray 7
astore 3
start local 3 1: aload 1
iconst_0
aload 3
iconst_0
aload 1
arraylength
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
2: aload 2
iconst_0
aload 3
aload 1
arraylength
aload 2
arraylength
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
3: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
0 4 1 x [D
0 4 2 y [D
1 4 3 z [D
MethodParameters:
Name Flags
x final
y final
public double mannWhitneyU(double[], double[]);
descriptor: ([D[D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=11, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokevirtual org.apache.commons.math3.stat.inference.MannWhitneyUTest.ensureDataConformance:([D[D)V
1: aload 0
aload 1
aload 2
invokevirtual org.apache.commons.math3.stat.inference.MannWhitneyUTest.concatenateSamples:([D[D)[D
astore 3
start local 3 2: aload 0
getfield org.apache.commons.math3.stat.inference.MannWhitneyUTest.naturalRanking:Lorg/apache/commons/math3/stat/ranking/NaturalRanking;
aload 3
invokevirtual org.apache.commons.math3.stat.ranking.NaturalRanking.rank:([D)[D
astore 4
start local 4 3: dconst_0
dstore 5
start local 5 4: iconst_0
istore 7
start local 7 5: goto 8
6: StackMap locals: org.apache.commons.math3.stat.inference.MannWhitneyUTest double[] double[] double[] double[] double int
StackMap stack:
dload 5
aload 4
iload 7
daload
dadd
dstore 5
7: iinc 7 1
StackMap locals:
StackMap stack:
8: iload 7
aload 1
arraylength
if_icmplt 6
end local 7 9: dload 5
aload 1
arraylength
i2l
aload 1
arraylength
iconst_1
iadd
i2l
lmul
ldc 2
ldiv
l2d
dsub
dstore 7
start local 7 10: aload 1
arraylength
i2l
aload 2
arraylength
i2l
lmul
l2d
dload 7
dsub
dstore 9
start local 9 11: dload 7
dload 9
invokestatic org.apache.commons.math3.util.FastMath.max:(DD)D
dreturn
end local 9 end local 7 end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
0 12 1 x [D
0 12 2 y [D
2 12 3 z [D
3 12 4 ranks [D
4 12 5 sumRankX D
5 9 7 i I
10 12 7 U1 D
11 12 9 U2 D
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException
MethodParameters:
Name Flags
x final
y final
private double calculateAsymptoticPValue(double, int, int);
descriptor: (DII)D
flags: (0x0002) ACC_PRIVATE
Code:
stack=7, locals=14, args_size=4
start local 0 start local 1 start local 3 start local 4 0: iload 3
i2l
iload 4
i2l
lmul
lstore 5
start local 5 1: lload 5
l2d
ldc 2.0
ddiv
dstore 7
start local 7 2: lload 5
iload 3
iload 4
iadd
iconst_1
iadd
i2l
lmul
l2d
ldc 12.0
ddiv
dstore 9
start local 9 3: dload 1
dload 7
dsub
dload 9
invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
ddiv
dstore 11
start local 11 4: new org.apache.commons.math3.distribution.NormalDistribution
dup
aconst_null
dconst_0
dconst_1
invokespecial org.apache.commons.math3.distribution.NormalDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DD)V
astore 13
start local 13 5: ldc 2.0
aload 13
dload 11
invokevirtual org.apache.commons.math3.distribution.NormalDistribution.cumulativeProbability:(D)D
dmul
dreturn
end local 13 end local 11 end local 9 end local 7 end local 5 end local 4 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
0 6 1 Umin D
0 6 3 n1 I
0 6 4 n2 I
1 6 5 n1n2prod J
2 6 7 EU D
3 6 9 VarU D
4 6 11 z D
5 6 13 standardNormal Lorg/apache/commons/math3/distribution/NormalDistribution;
Exceptions:
throws org.apache.commons.math3.exception.ConvergenceException, org.apache.commons.math3.exception.MaxCountExceededException
MethodParameters:
Name Flags
Umin final
n1 final
n2 final
public double mannWhitneyUTest(double[], double[]);
descriptor: ([D[D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=7, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
invokevirtual org.apache.commons.math3.stat.inference.MannWhitneyUTest.ensureDataConformance:([D[D)V
1: aload 0
aload 1
aload 2
invokevirtual org.apache.commons.math3.stat.inference.MannWhitneyUTest.mannWhitneyU:([D[D)D
dstore 3
start local 3 2: aload 1
arraylength
i2l
aload 2
arraylength
i2l
lmul
l2d
dload 3
dsub
dstore 5
start local 5 3: aload 0
dload 5
aload 1
arraylength
aload 2
arraylength
invokevirtual org.apache.commons.math3.stat.inference.MannWhitneyUTest.calculateAsymptoticPValue:(DII)D
dreturn
end local 5 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lorg/apache/commons/math3/stat/inference/MannWhitneyUTest;
0 4 1 x [D
0 4 2 y [D
2 4 3 Umax D
3 4 5 Umin D
Exceptions:
throws org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.ConvergenceException, org.apache.commons.math3.exception.MaxCountExceededException
MethodParameters:
Name Flags
x final
y final
}
SourceFile: "MannWhitneyUTest.java"