Web 基尼系数的计算

html 复制代码
<!DOCTYPE html>
<html>

<head>
  <title>计算基尼系数</title>
  <script src="https://cdn.staticfile.org/Chart.js/3.9.1/chart.js"></script>
  <script>
    var myChart;
    function giniCoefficient(data) {
      var cum_data = Array.from({ length: data.length + 1 }, function (_, i) {
        return i === data.length ? 0 : data[i];
      }).sort(function (a, b) { return a - b; }).reduce(function (acc, val) {
        acc.push((acc[acc.length - 1] || 0) + val);
        return acc;
      }, []);
      var sum_data = cum_data[cum_data.length - 1];
      var xarray = Array.from({ length: cum_data.length }, function (_, i) { return i / (cum_data.length - 1); });
      var upper = xarray;
      var yarray = cum_data.map(function (val) { return val / sum_data; });
      console.log(xarray, yarray);
      //pl.plot(xarray, yarray)
      //pl.plot(xarray, upper)
      var B = trapz(yarray, xarray);
      console.log("B的面积:", B);
      var A = 0.5 - B;
      console.log("A的面积:", A);
      var G = A / (A + B);

      // 销毁之前的图表实例
      if (myChart) {
        myChart.destroy();
      }
      // 创建画布
      const canvas = document.getElementById('giniChart');
      canvas.width = 30;
      canvas.height = 20;
      var ctx = canvas.getContext('2d');

      // 绘制基尼系数曲线
      myChart = new Chart(ctx, {
        type: 'line',
        data: {
          labels: xarray,
          datasets: [
            {
              label: '洛伦茨曲线的面积',
              data: yarray,
              borderColor: 'blue',
              backgroundColor: 'rgba(0, 0, 255, 0.5)',
              fill: true
            },
            {
              label: '绝对平等线面积与洛伦茨曲线面积之差',
              data: xarray,
              borderColor: 'red',
              backgroundColor: 'rgba(255, 0, 0, 0.5)',
              fill: true,
            }
          ]
        },
        options: {
          scales: {
            x: {
              display: true,
              title: {
                display: true,
                text: '个数累计百分比'
              }
            },
            y: {
              display: true,
              title: {
                display: true,
                text: '数值累计百分比'
              }
            }
          },
          title: {
            display: true,
            text: 'Gini Coefficient'
          }
        }
      });

      return G;
    }

    function trapz(y, x) {
      if (y.length !== x.length) {
        throw new Error('The length of y and x must be the same');
      }
      var n = y.length;
      var s = 0;
      for (var i = 1; i < n; i++) {
        s += (x[i] - x[i - 1]) * (y[i] + y[i - 1]);
      }
      return s / 2;
    }


    function calculateGini() {
      var values = document.getElementById("inputValues").value;
      var data = values.split(",").map(Number);

      var result = giniCoefficient(data)

      document.getElementById("result").innerHTML = "基尼系数: " + result;
    }
  </script>
</head>

<body>
  <h1>计算基尼系数</h1>
  <label for="inputValues">输入数据(用逗号分隔):</label>
  <input type="text" id="inputValues"><br><br>
  <button onclick="calculateGini()">计算</button><br><br>
  <div id="result"></div>
  <dic style="width: 600px; display:block">
  <canvas id="giniChart"></canvas>
  </dic>
</body>

</html>
相关推荐
yinuo1 小时前
Git Submodule 与 Subtree 全方位对比:使用方式与场景选择
前端
yinuo1 小时前
深入理解与实战 Git Subtree
前端
向上的车轮1 小时前
Actix Web 不是 Nginx:解析 Rust 应用服务器与传统 Web 服务器的本质区别
前端·nginx·rust·tomcat·appche
Liudef062 小时前
基于LLM的智能数据查询与分析系统:实现思路与完整方案
前端·javascript·人工智能·easyui
潘小安2 小时前
跟着 AI 学(三)- spec-kit +claude code 从入门到出门
前端·ai编程·claude
金梦人生3 小时前
让 CLI 更友好:在 npm 包里同时支持“命令行传参”与“交互式对话传参”
前端·npm
Mintopia3 小时前
🐋 用 Docker 驯服 Next.js —— 一场前端与底层的浪漫邂逅
前端·javascript·全栈
Mintopia3 小时前
物联网数据驱动 AIGC:Web 端设备状态预测的技术实现
前端·javascript·aigc
一个W牛3 小时前
报文比对工具(xml和sop)
xml·前端·javascript
鸡吃丸子3 小时前
浏览器是如何运作的?深入解析从输入URL到页面渲染的完整过程
前端