如何在Vizframe图表中实现线性回归线?

时间:2017-03-21 22:05:20

标签: sap visualization sapui5

我有一个散点图Vizframe图表,其中我需要包含一个线性回归/趋势线。知道如何做到这一点?看起来这不是vizframe提供的东西'开箱即用'?我无法找到解决方案!

问题:

关于在Scatter Plot Vizframe图表上实现回归线的可行方法的任何建议?

以下是我设置的代码。按下按钮时,散点图将以对话框/模态打开。

sap.ui.define([
        'jquery.sap.global',
        'vizConcept/controller/BaseController',
        'sap/ui/model/json/JSONModel',
        'vizConcept/model/viewControls',
        'sap/m/Button',
        'sap/m/Dialog',
    ],

    function (jQuery, BaseController, JSONModel, viewControls, Button, Dialog) {

        "use strict";

        var controls;

        var mainController = BaseController.extend("vizConcept.controller.Main", {

            onInit: function(oEvent) {

                // Access/expose the defined model(s) configured in the Component.js or Manifest.json within the controller.
                this.getView().setModel(this.getOwnerComponent().getModel("products"), "products");
                var oModel = this.getView().getModel("products");
                this.getView().setModel(oModel);

                var sUrl = "#" + this.getOwnerComponent().getRouter().getURL("page2");

        $(function() {
            var dataset = new sap.viz.ui5.data.FlattenedDataset({ 
                dimensions : [
                 {
                   axis : 1,
                   name : 'Award Date',
                   value : "{AwdDate}"
                 }
                ],
                measures : [
                            {
                            group: 1,
                                name : 'Award Date',
                                value : '{Hist}'
                            },
                            {
                            group: 2,
                                name : 'Current PPI',
                                value : '{Current}'
                            }
                ],
                data : {
                  path : "/ProductCollection"
                }   
              });


        var scatterViz = new sap.viz.ui5.Scatter({
                id : "idscatter",
                width : "1000px",
                height : "400px",
                title : {
                  text : 'Pricing Tool Scatter Plot Example'
                },
                xAxis : {
                  title : {
                    visible : true
                  }
                },
                yAxis : {
                  title : {
                    visible : true
                  }
                },
                dataset : dataset
              });

          scatterViz.setModel(sap.ui.getCore().getModel());  
          scatterViz.setModel(oModel);


      var dlg = new sap.m.Dialog({
        id: 'vizModal',    
        title: 'Scatter Plot Example Viz',
        width : "1800px",  
        height : "600px",  
        content : [scatterViz],
        beginButton: new Button({
                            text: 'Close',
                            press: function () {
                                dlg.close();
                            }
                        })  
      });

      (new sap.m.Button({
            text: 'open',
            type: 'Accept',
            press: function() {
              dlg.open();
              scatterViz.invalidate();
            }
          })).placeAt('content');
        });
            },    

        onToPage2 : function () {
            this.getOwnerComponent().getRouter().navTo("page2");
        },


        });

        return mainController;
    });

修改

以下是'产品'在vizframe图表上输出的模型。我有manifest.json中定义的产品模型,但是连接很好:

产品型号

          {
            "ProductCollection": [
                { 
                    "Item": "1",
                    "AwdDate": "20160715",
                    "Hist": 171.9,
                    "Current": 183

                },
                {
                    "Item": "2",
                    "AwdDate": "20160701",
                    "Hist" : 144.3,
                    "Current": 158.6
                },
                {
                    "Item": "3",
                    "AwdDate": "20150701",
                    "Hist": 160,
                    "Current": 165
                },
                { 
                    "Item": "1",
                    "AwdDate": "20160715",
                    "Hist": 201,
                    "Current": 167
                },
                {
                     "Item": "2",
                    "AwdDate": "20160801",
                    "Hist" : 175.3,
                    "Current": 178.2
                },
                {
                    "Item": "3",
                    "AwdDate": "20150721",
                    "Hist": 160,
                    "Current": 147
                },
                { 
                    "Item": "1",
                    "AwdDate": "20160715",
                    "Hist": 175.9,
                    "Current": 185.2
                },
                {
                    "Item": "2",
                    "AwdDate": "20161101",
                    "Hist" : 165.3,
                    "Current": 158.2
                },
                {
                    "Item": "3",
                    "AwdDate": "201700101",
                    "Hist": 160,
                    "Current": 165
                },
                {
                    "Item": "4",
                    "AwdDate": "201600401",
                    "Hist": 173,
                    "Current": 177
                }

            ]
        };    

编辑2 以下是我对提供的解决方案here的尝试。但是在控制器的onInit()函数中包含它之后没有任何内容出现。

var regressionData = [];
for (var i = 0; i < 10; i++) {
regressionData[i] = [oData.ProductCollection[i].Current, oData.ProductCollection[i].Hist];
            };

regression('linear', regressionData);  

1 个答案:

答案 0 :(得分:1)

不幸的是,你有一些固有的viz图表限制。即:

  • 您无法在图表中添加“倾斜”参考线(=趋势线)。您只能通过Reference Line功能添加垂直/水平。查看(非直观)文档:Viz Charts Documentation(查看plotArea.referenceLine.line;它只是一个数字=将是一条水平/垂直线,具体取决于您的图表类型或方向)。 / LI>
  • 您无法将散点图与折线图合并。如果您查看相同的Viz Charts Documentation,您会看到左侧的组合“章节”中没有“Line - Scatter”组合。

此外,您的X值(AwDate)是ABAP样式的日期为字符串。使用日期/时间图表正确显示它们更合适。无论如何,当你使用日期时,回归会更有意义。否则,您的数据是“分类”的,并且您可以进行回归的唯一方法是对它们进行排序并在X轴上等距离考虑它们 - 如果您有非等距数据(如示例中的数据),则不是您通常想要的数据。

我的建议是:

  • 使用折线图而不是散点图(这样您也可以显示趋势线)。
  • 将ABAP样式的字符串转换为日期,以便您可以使用时间序列图表。您的示例数据btw中有一些“错误”日期:“2016 00 401”。
  • 根据您的需要进行回归,并将其添加为单独的“趋势”系列。您需要为其他系列中的每个点计算“趋势”系列中的一个点(基本上,您必须为ProductCollection中的每一行添加“趋势”属性)。如果您使用的是OData模型,则需要切换到JSON客户端模型或使用格式化程序进行一些丑陋的变通方法。

根据要求,我在这里做了一个示例实现:https://jsfiddle.net/93mx0yvt/23/。我从这里借来的回归算法:https://dracoblue.net/dev/linear-least-squares-in-javascript/。代码的要点是:

// format for parsing the ABAP-style dates
var oFormat = DateFormat.getDateInstance({
  pattern: "yyyyMMdd"
});

// maps an ProductCollection entry to a new object
// which has the parsed date (and only the needed attributes)
var fnMapData = function(oEntry) {
  return {
    date: oFormat.parse(oEntry.AwdDate),
    current: oEntry.Current,
    historical: oEntry.Hist
  };
};

var fnProcessData = function(oD) {
  var aEntries = oD.ProductCollection.map(fnMapData),
    aXs = aEntries.map(function(oE) { // get the Xs
      // we take the millis to be able to do arithmetics
      return oE.date.getTime(); 
    }),
    aYs = aEntries.map(function(oE) { // get the Ys (hist)
      return oE.historical;
    }),
    //changed the function to only return only result Ys
    aRs = findLineByLeastSquares(aXs, aYs);

  //save the Ys into the result
  for (var i = 0; i < aEntries.length; ++i) {
    aEntries[i].trend = aRs[i];
  }
  return {
    data: aEntries
  };
};

您可以在JSONModel中使用fnProcessData函数返回的数据,然后根据它构建一个简单的多系列日期/时间线图。