如何回归图表中的线(Chart.js)

问题描述 投票:1回答:1

我看到其他库支持此功能,但是Chart.js的数据很少。有人可以指示我从图形的回归线开始的方式吗?到目前为止,这是我的代码:

var datiedu3 = {"labels": ['ok'],
          "datasets": [{label: 'EEE',
                        data: datoa ,

                        backgroundColor: 'rgb(255, 99, 132)',
                        borderWidth: 1,
                        showLine: false}] 
           };

function grafo2(dati, opzioni) {
  var grafoline = document.getElementById('Chartline').getContext('2d');
  new Chart(grafoline, {type: 'scatter',data: dati, options: opzioni});
};
// display the data used in dataset[0]:
console.log(datiedu3.datasets[0].data)
grafo2(datiedu3)

我以为我不得不用线图创建另一个数据集,并将方程式放在那里,但我不知道该怎么做,我有点迷茫。

我的整个代码在这里codepen

javascript chart.js
1个回答
0
投票

我通常使用regression package

首先,将package添加为外部脚本。其次,清理您的数据。这里只是基本检查:

const clean_data = datoa
    .filter(({ x, y }) => {
      return (
        typeof x === typeof y &&  // filter out one string & one number
        !isNaN(x) &&              // filter out `NaN`
        !isNaN(y) &&
        Math.abs(x) !== Infinity && 
        Math.abs(y) !== Infinity
      );
    })
    .map(({ x, y }) => {
      return [x, y];             // we need a list of [[x1, y1], [x2, y2], ...]
    });

然后运行

const my_regression = regression.linear(
  clean_data
);

结果将类似于:

{
  'points': [[4,3.79],[4.75,3.83],[5.5,3.87],.....],
  'equation': [0.05,3.59],
  'r2': 0.26,
  'string': 'y = 0.05x + 3.59'
}

完成。我们有[x,y]分。因此,将线性回归点转换为chartjs可以呈现的内容:

const useful_points = my_regression.points.map(([x, y]) => {
    return y;    
    // or {x, y}, depending on whether you just want y-coords for a 'linear' plot
    // or x&y for a 'scatterplot'
})

您可以将这些点添加为

© www.soinside.com 2019 - 2024. All rights reserved.