1

我花了好几天学习 linq 并从我的控制器在 mvc 中生成 json 结果。然而,我现在陷入了一个问题,我希望滚动 Y 轴数据的总和(累积总和)值以生成年初至今的折线图。

我目前生成简单月度数据的代码如下:

//Generic Json For Graphs
public JsonResult GetJSONYTD(int kpiID)
{
    var ViewData = 
        (from kpidata in departmentrepo.GetGraphData(kpiID)
         select new DepartmentOverviewDetailsViewModel.GraphJSONViewModel
         {
             XData = kpidata.Year.Year1 + "-" 
                     + kpidata.Month.Real_Month_Int + "-01",
             YData = kpidata.Value
         });

    var ChartData = ViewData.Select(
                        x => new object[] { x.XData, x.YData }).ToArray();

    return Json(ChartData, JsonRequestBehavior.AllowGet);
}

以上产生以下数组:

[
 ["2011-10-01",0],
 ["2011-11-01",22],
 ["2011-12-01",22],
 ["2012-1-01",14],
 ["2012-2-01",14.4],
 ["2012-3-01",17.5],
 ["2012-4-01",20.3],
 ["2012-5-01",23.5],
 ["2012-6-01",24.5],
 ["2012-7-01",26.5]
]

我想输出:

[
 ["2011-10-01",0],
 ["2011-11-01",22],
 ["2011-12-01",44],
 ["2012-1-01",38],
 ["2012-2-01",52.4],
 etc
]

有什么帮助吗?

4

2 回答 2

0

将您的代码更改为:

//图的通用Json

public JsonResult GetJSONYTD(int kpiID)
{
    var graphData = departmentrepo.GetGraphData(kpiID);
    var ViewData = (from kpidata in graphData

                    select new DepartmentOverviewDetailsViewModel.GraphJSONViewModel
                    {
                        XData = kpidata.Year.Year1 + "-" + kpidata.Month.Real_Month_Int + "-01",
                        YData = graphData.Where(x=>x.Date<=kpidata.Date).Sum(x=>x.Value)
                    });

    var ChartData = ViewData.Select(x => new object[] { x.XData, x.YData }).ToArray();

    return Json(ChartData, JsonRequestBehavior.AllowGet);
}

上面的代码将在 YData 中存储数据小于或等于当前日期的所有数据点的总和。

于 2012-09-07T23:21:21.670 回答
0

您可以使用 Aggregate 内联执行此操作:

    var rollingSum = ViewData.Aggregate(
        // start with a list of a single model with value 0 (this avoids func having to deal with the empty list case
        seed: new[] { new DepartmentOverviewDetailsViewModel.GraphJSONViewModel { XData = string.Empty, YData = 0.0 } }.ToList(),
        // the aggregation function adds to the list a new tuple with the current date string
        // and a cumulative sum value
        func: (list, data) => {
            list.Add(new DepartmentOverviewDetailsViewModel.GraphJSONViewModel { XData = data.XData, YData = data.YData + list[list.Count - 1].YData });
            return list;
        }
    )
    .Skip(1) // skip the first dummy value we seeded the list with
    .ToArray();

另一种选择是编写一个通用的累积和函数,然后使用它:

public static class MyEnumerableExtensions {

    public static IEnumerable<double> CumulativeSum(this IEnumerable<double> @this) {
        var sum = 0;
        foreach (var value in @this) { sum += value; yield return sum; }
    }

}

// then to compute the sum you want
var rollingSum = ViewData.Select(m => m.YData).CumulativeSum();
var rollingSumWithDates = ViewData.Zip(rollingSum, (m, sum) => new DepartmentOverviewDetailsViewModel.GraphJSONViewModel { XData = m.XData, YData = sum })
    .ToArray();
于 2012-09-08T21:13:55.973 回答