1
+
2
+ """
3
+ Tests for inequality.py
4
+
5
+ """
6
+
7
+ import numpy as np
8
+ from numpy .testing import assert_allclose
9
+ from quantecon import lorenz_curve , gini_coefficient
10
+
11
+
12
+ def test_lorenz_curve ():
13
+ """
14
+ Tests `lorenz` function, which calculates the lorenz curve
15
+
16
+ An income distribution where everyone has almost the same wealth should
17
+ be similar to a straight line
18
+
19
+ An income distribution where one person has almost the wealth should
20
+ be flat and then shoot straight up when it approaches one
21
+ """
22
+ n = 3000
23
+
24
+ # Almost Equal distribution
25
+ y = np .repeat (1 , n ) + np .random .normal (scale = 0.0001 , size = n )
26
+ cum_people , cum_income = lorenz_curve (y )
27
+ assert_allclose (cum_people , cum_income , rtol = 1e-03 )
28
+
29
+ # Very uneven distribution
30
+ y = np .repeat (0.001 , n )
31
+ y [4 ] = 100000
32
+ pop_cum , income_cum = lorenz_curve (y )
33
+ expected_income_cum = np .repeat (0. , n + 1 )
34
+ expected_income_cum [- 1 ] = 1.
35
+ assert_allclose (expected_income_cum , income_cum , atol = 1e-4 )
36
+
37
+
38
+ def test_gini_coeff ():
39
+ """
40
+ Tests how the funciton `gini_coefficient` calculates the Gini coefficient
41
+ with the Pareto and the Weibull distribution.
42
+
43
+ Analytically, we know that Pareto with parameter `a` has
44
+ G = 1 / (2*a - 1)
45
+
46
+ Likewise, for the Weibull distribution with parameter `a` we know that
47
+ G = 1 - 2**(-1/a)
48
+
49
+ """
50
+ n = 10000
51
+
52
+ # Tests Pareto: G = 1 / (2*a - 1)
53
+ a = np .random .randint (2 , 15 )
54
+ expected = 1 / (2 * a - 1 )
55
+
56
+ y = (np .random .pareto (a , size = n ) + 1 ) * 2
57
+ coeff = gini_coefficient (y )
58
+ assert_allclose (expected , coeff , rtol = 1e-01 )
59
+
60
+ # Tests Weibull: G = 1 - 2**(-1/a)
61
+ a = np .random .randint (2 , 15 )
62
+ expected = 1 - 2 ** (- 1 / a )
63
+
64
+ y = np .random .weibull (a , size = n )
65
+ coeff = gini_coefficient (y )
66
+ assert_allclose (expected , coeff , rtol = 1e-01 )
0 commit comments