IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> echarts散点图(线性回归) -> 正文阅读

[JavaScript知识库]echarts散点图(线性回归)

echarts散点图(线性回归)

备注:线性回归是利用数理统计中回归分析,说白了就是根据你的数据算出一个方程式,然后在图中用一条线展示出来

在这里插入图片描述

echarts得版本必须是5.0或以上的

npm install echarts -S
npm install echarts-stat -S
//main.js
import Vue from 'vue'
import * as echarts from 'echarts';
Vue.prototype.$echarts = echarts
<div class="charts" ref="chart"></div>

import * as ecStat from 'echarts-stat';
export default {
  data() {
    return {
    };
  },
  mounted() {
    this.getEchart();
  },
  methods: {
    getEchart() {
      this.$echarts.registerTransform(ecStat.transform.regression);
      // 基于准备好的dom,初始化echarts实例
      //light是用来改变展示的颜色
      var myChart = this.$echarts.init(this.$refs.chart, "light");
      var option = {
        dataset: [
          {
            source: [
              [1, 4862.4],
              [2, 5294.7],
              [3, 5934.5],
              [4, 7171.0],
              [5, 8964.4],
              [6, 10202.2],
              [7, 11962.5],
              [8, 14928.3],
              [9, 16909.2],
              [10, 18547.9],
              [11, 21617.8],
              [12, 26638.1],
              [13, 34634.4],
              [14, 46759.4],
              [15, 58478.1],
              [16, 67884.6],
              [17, 74462.6],
              [18, 79395.7],
            ],
          },
          {
            transform: {
              type: "ecStat:regression"
            },
          },
        ],
        tooltip: {
          trigger: "axis",
          axisPointer: {
            type: "cross",
          },
        },
        xAxis: {
          splitLine: {
            lineStyle: {
              type: "dashed",
            },
          },
        },
        yAxis: {
          splitLine: {
            lineStyle: {
              type: "dashed",
            },
          },
        },
        series: [
          {
            name: "scatter",
            type: "scatter",
            datasetIndex: 0,
          },
          {
            name: "line",
            type: "line",
            smooth: true,
            datasetIndex: 1,
            symbolSize: 0.1,
            symbol: "circle",
            label: { show: true, fontSize: 16 },
            labelLayout: { dx: -20 },
            encode: { label: 2, tooltip: 1 },
          },
        ],
      };
      // 使用指定的配置项和数据显示图表。
      myChart.setOption(option);
    },
  },
};

以上就能显示出散点图了,下面来看看我遇到的问题

报错一

[Vue warn]: Error in mounted hook: “TypeError: data.count is not a function”
TypeError: data.count is not a function

1.这个是因为echarts版本问题(因为我的echarts版本是4.9.0,官方要求是5.0及以上的版本,然后我把版本改成5.1.0就好了)
2.版本改好后还是报这个错,那你就需要 npm install echarts-stat -S

报错二

Error in mounted hook: "TypeError: this. e c h a r t s . r e g i s t e r T r a n s f o r m i s n o t a f u n c t i o n " T y p e E r r o r : t h i s . echarts.registerTransform is not a function" TypeError: this. echarts.registerTransformisnotafunction"TypeError:this.echarts.registerTransform is not a function

这个是因为echarts版本问题(因为我的echarts版本是4.9.0,官方要求是5.0及以上的版本,然后我把版本改成5.1.0就好了)

this.$echarts.registerTransform(ecStat.transform.regression);

报错三

[Vue warn]: Error in mounted hook: “ReferenceError: ecStat is not defined”
ReferenceError: ecStat is not defined

这个是因为没有引入echarts-stat

import * as ecStat from 'echarts-stat';

报错四

[Vue warn]: Error in mounted hook: “TypeError: Cannot read property ‘registerTransform’ of undefined”
TypeError: Cannot read property ‘registerTransform’ of undefined

这个是因为引入echarts的问题

import * as echarts from 'echarts';
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-14 13:57:07  更:2021-08-14 13:58:11 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 8:47:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码