线性图

机器学习经常使用折线图来显示关系。

折线图显示线性函数的值: y = ax + b

重要关键字:

  • 线性(直的)
  • (角度)
  • 截距(起始值)

线性

线性意思是直的。线性图是一条直线。

该图由两个轴组成:x 轴(水平)和 y 轴(垂直)。

示例

const xValues = [];
const yValues = [];

// Generate values
for (let x = 0; x <= 10; x += 1) {
  xValues.push(x);
  yValues.push(x);
}

// Define Data
const data = [{
  x: xValues,
  y: yValues,
  mode: "lines"
}];

// Define Layout
const layout = {title: "y = x"};

// Display using Plotly
Plotly.newPlot("myPlot", data, layout);
亲自试一试 »


这个是图形的角度。

斜率是A线性图中的值:

y =AX

在这个例子中,=1.2:

示例

let slope = 1.2;
const xValues = [];
const yValues = [];

// Generate values
for (let x = 0; x <= 10; x += 1) {
  xValues.push(x);
  yValues.push(x * slope);
}

// Define Data
const data = [{
  x: xValues,
  y: yValues,
  mode: "lines"
}];
// Define Layout
const layout = {title: "Slope=" + slope};

// Display using Plotly
Plotly.newPlot("myPlot", data, layout);
亲自试一试 »

截距

这个截距是图表的起始值。

截距是线性图中的值:

y = 斧头 +

在此示例中,斜率 = 1.2 并且截距=2:

示例

let slope = 1.2;
let intercept = 7;
const xValues = [];
const yValues = [];

// Generate values
for (let x = 0; x <= 10; x += 1) {
  xValues.push(x);
  yValues.push(x * slope + intercept);
}

// Define Data
const data = [{
  x: xValues,
  y: yValues,
  mode: "lines"
}];

// Define Layout
const layout = {title: "Slope=" + slope + " Intercept=" + intercept};

// Display using Plotly
Plotly.newPlot("myPlot", data, layout);
亲自试一试 »