Весовой коэффициент Джини в Python
Вот простая реализация коэффициента Джини в Python от /questions/37585065/raschet-koeffitsienta-dzhini-v-python-numpy/37585070#37585070:
def gini(x):
# Mean absolute difference.
mad = np.abs(np.subtract.outer(x, x)).mean()
# Relative mean absolute difference
rmad = mad / np.mean(x)
# Gini coefficient is half the relative mean absolute difference.
return 0.5 * rmad
Как это можно отрегулировать так, чтобы массив масс был вторым вектором? Это должно принимать нецелые веса, поэтому не просто взорвать массив весами.
Пример:
gini([1, 2, 3]) # No weight: 0.22.
gini([1, 1, 1, 2, 2, 3]) # Manually weighted: 0.23.
gini([1, 2, 3], weight=[3, 2, 1]) # Should also give 0.23.
1 ответ
Решение
Расчет mad
можно заменить на:
x = np.array([1, 2, 3, 6])
c = np.array([2, 3, 1, 2])
count = np.multiply.outer(c, c)
mad = np.abs(np.subtract.outer(x, x) * count).sum() / count.sum()
np.mean(x)
можно заменить на:
np.average(x, weights=c)
Вот полная функция:
def gini(x, weights=None):
if weights is None:
weights = np.ones_like(x)
count = np.multiply.outer(weights, weights)
mad = np.abs(np.subtract.outer(x, x) * count).sum() / count.sum()
rmad = mad / np.average(x, weights=weights)
return 0.5 * rmad
проверить результат, gini2()
использование numpy.repeat()
повторить элементы:
def gini2(x, weights=None):
if weights is None:
weights = np.ones(x.shape[0], dtype=int)
x = np.repeat(x, weights)
mad = np.abs(np.subtract.outer(x, x)).mean()
rmad = mad / np.mean(x)
return 0.5 * rmad