如何在WFA中将数据添加到BoxPlot? [英] How to add data to BoxPlot in WFA?

查看:59
本文介绍了如何在WFA中将数据添加到BoxPlot?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在手动创建箱形图。我有4个double []数组,并且要在图表上显示一些计算结果。我不知道如何将图表与图表系列正确连接。
这是我的图表:

 图表chart = new Chart(); 
chart.Series.Add( S1);
chart.Series.Add( S2);
chart.Series.Add( S3);
chart.Series.Add( S4);
chart.ChartAreas.Add( ChartArea1);
chart.ChartAreas [0] .Visible = true;
chart.ChartAreas [0] .Position.Auto = true;
chart.Series [0] .ChartType = SeriesChartType.BoxPlot;
chart.Series [1] .ChartType = SeriesChartType.BoxPlot;
chart.Series [2] .ChartType = SeriesChartType.BoxPlot;
chart.Series [3] .ChartType = SeriesChartType.BoxPlot;

chart.Parent = this;
chart.Visible = true;
double [] yValues = {2,3,4,5,4,5,5,1,1,9,20,4}; //示例值
chart.Series [ S1 ] .Points.DataBindY(yValues);

这就是我得到的:





结果,我想要得到类似的东西:

解决方案

您试图将数据绑定到 BoxPlot 系列。但这只会导致绑定第一个Y值,这意味着您已经创建了一组较低晶须。所有其他5个Y值均为空,即 0 。因此,您看到的图形很少。.




您也可以创建个人系列;



选项2:自己输入 BoxPlot 数据



让我们看一下第一种方法的示例:在这里我们需要准备好统计信息。首先,我创建一个随机数数据结构;这是列表双重数组,每个数组有6个元素:

 随机数R =新的随机数(23); 
List< double []> yValues = new List< double []>();
for(int i = 0; i< 8; i ++)
{
{R.Next(5),R.Next(5)+ 20,R.Next(5) + 3,
R.Next(5)+ 10,R.Next(5)+ 5,R.Next(5)+ 7});
}

现在,我们将这些虚假统计信息添加到 BoxPlot 系列:

  S1.ChartType = SeriesChartType.BoxPlot; 
S1.Points.Clear();
for(int i = 0; i< yValues.Count; i ++)S1.Points.Add(new DataPoint(i,yValues [i]));

请注意,每个 DataPoint 是从



这里是结果:





该图表现在显示8个数据集的统计信息,所有数据都是伪造的;-)



选项3a:将一些数据系列与 BoxPlot 关联,然后进行数学运算



用途是使图表变为数学:它可以计算任意数量的数据系列的统计信息,并为每个数据系列创建一个框。



我们将使用与以前相同的数据集,但是现在它们用于创建6个数据系列,每个数据都有8个点:

 为(int i = 0; i< 6; i ++)
{
Series ds = chart.Series.Add( D +(i + 1) ); //设置名称D1,D2。
dx.ChartType = SeriesChartType.Line;
dx.Points.DataBindY(yValues.Select(x => x [i])。ToArray());
}

它们与上面的数字相同,但是现在有不同的数字含义。因此结果将并且应该看起来相似!



实际上,您可以查看框和图,并查看它们的拟合程度。



请注意我给出的数据系列的名称;当我们将它们绑定到 BoxPlot 系列时,我们现在将需要它们:

  S1.ChartType = SeriesChartType.BoxPlot; 
S1 [ BoxPlotSeries] = D1; D2; D3; D4; D5; D6; //箱形图绑定!
S1.LegendText = BoxPlot;



我对绑定使用引号,因为它不是真实数据绑定;取而代之的是,数据系列仅与 BoxPlot 系列具有特殊属性字符串 BoxPlotSeries



您的示例包含多个 BoxPlot 系列;



看看



更新:



您的示例实际上显示了三个箱形图系列;因此是颜色,最显着的是:群集(即无间隙)显示。



这是将上述数据(来自选项1)绑定到三个单独的框的方法:

  for(int i = 0; i< 3; i ++)
{
Series bps = chart.Series.Add( BoxPlotSeries + i);
bps.ChartType = SeriesChartType.BoxPlot;
var yValOne = yValues.Select(x => new [] {x [i]})。ToArray();
bps.Points.DataBindY(yValOne);
}



最后的注释:您的示例代码包含一个数组,该数组包含12个双打和4个boxplot系列。这是没有道理的。不过,您可以将12个值添加到普通序列中,并使用选项3将其与一个箱形图序列相关联。.


I'm creating manually a boxplot chart. I have 4 double[] arrays with some calculations results that i want show on chart. I don't know how to connect correctly my arrays with chart Series. Here is my chart:

        Chart chart = new Chart();
        chart.Series.Add("S1");
        chart.Series.Add("S2");
        chart.Series.Add("S3");
        chart.Series.Add("S4");
        chart.ChartAreas.Add("ChartArea1");
        chart.ChartAreas[0].Visible = true;
        chart.ChartAreas[0].Position.Auto = true;
        chart.Series[0].ChartType = SeriesChartType.BoxPlot;
        chart.Series[1].ChartType = SeriesChartType.BoxPlot;
        chart.Series[2].ChartType = SeriesChartType.BoxPlot;
        chart.Series[3].ChartType = SeriesChartType.BoxPlot;

        chart.Parent = this;
        chart.Visible = true;
        double[] yValues = { 2, 3, 4, 5, 4, 5, 5, 2, 1, 9, 20, 4 };//example values
        chart.Series["S1"].Points.DataBindY(yValues);

This is what i get:

As result i want get something like that:

解决方案

You have tried to bind your data to a BoxPlot series. But this has only resulted in binding the first Y-value, which means you have created a set of 'lower whiskers'. All other 5 Y-values are empty, ie are 0. Hence the meager graphics you see..

MSDN: The values for a box are typically calculated values from data that is present in another series. One box symbol (DataPoint object) is associated with one data series.

The data for a Box Plot series may still be populated using data binding, or by employing the Series.Points member (a DataPointCollection object).

Let's look at all of these options:

  1. Use regular data binding. This is what you tried but with a wrong syntax.

  2. You can also add the DataPoints of the box plot series itself one by one with AddY or AddXY, supplying all 6 Y-Values, i.e. feeding in the results of a statistical analysis. Here only one array is used and it contains the six y-values.

  3. Or you can use one or more data series and let the chart summarize those data in one box per series. The series are quite normal, read may be Point, Line or whatever.. They can even be invisible and of course you can use data binding for them.. - Once some data series are in place you can define the BoxPlot series and 'bind' it to the data series by seting its ["BoxPlotSeries"] special property to a string into which you concatenate the Series' Names...

Option 1. Use regular data binding to feed in the stats you have.

This is what you tried. The correct way is a little surprising, though; your data need to be ordered like this:

The outer array (or IEnumerable) must have the six y-values; the six inner arrays should contain one value for each of the data sets you want to show in a box. Let's look at an example with three data sets of faked stats:

double[][] yValues = {
            new[]{ 15.6, 24.4, 36.1 },  // Lower whiskers
            new[]{ 46.2, 52.2, 91.9 },  // Upper whiskers
            new[]{ 22.3, 27.2, 55.9 },  // Lower boxes
            new[]{ 33.2, 44.4, 77.9 },  // Upper boxes
            new[]{ 25.2, 38.4, 68.5 },  // Averages and means
            new[]{ 27.4, 32.4, 66.9 }   // Medians
        };

This is how it looks after binding it to a BoxPlot series S1

S1.Points.DataBindY(yValues);

You can also create individual series; see the update at the bottom for this!

Option 2: Feed in the BoxPlot data yourself

Let's look at an example of the first way: Here we need to have the statistics ready.. First I create a random data structure; it is a List of double arrays each with 6 elements:

Random R = new Random(23);
List<double[]> yValues = new List<double[]>();
for (int i = 0; i < 8; i++)
{
    { R.Next(5),      R.Next(5) + 20, R.Next(5) + 3, 
      R.Next(5) + 10, R.Next(5) +  5, R.Next(5) + 7 });
}

Now we add those fake statistics to the BoxPlot series:

S1.ChartType = SeriesChartType.BoxPlot;
S1.Points.Clear();
for (int i = 0; i < yValues.Count; i++ ) S1.Points.Add(new DataPoint(i, yValues[i]));

Note that each DataPoint is created from an array of 6 doubles!

Here is the result:

The chart now shows stats on 8 data sets, all faked ;-)

Option 3a: Associate some data series with the BoxPlot and let it do the math

The other usage is to let the chart to the math: It can calculate the statistics for any number of data series you have and create one box for each.

We will use the same data set as before, but now they are used to create 6 data series, each with 8 points:

for (int i = 0; i < 6; i++)
{
    Series ds = chart.Series.Add("D" + (i+1));  // set a name D1, D2..
    dx.ChartType = SeriesChartType.Line;
    dx.Points.DataBindY(yValues.Select(x => x[i]).ToArray());
}

They are bound to the same numbers as above, but these now have a different meaning. Therefore the results will and should not look alike!!

In fact you can look at the boxes and graphs and see how they nicely fit.

Note the Names I gave the data series; we will need them now, when we 'bind' them to the BoxPlot series:

S1.ChartType = SeriesChartType.BoxPlot;
S1["BoxPlotSeries"] = "D1;D2;D3;D4;D5;D6";  // box plot binding!
S1.LegendText = "BoxPlot";

I use quotes for the 'binding' because it isn't real data binding; instead the data series are only associated with the BoxPlot series with the sprecial property string "BoxPlotSeries".

Your example has more than one BoxPlot series; here the same rules apply.

Do have a look at this post which shows another use of BoxPlot including setting individual colors..

Option 3b: Associate some data series with DataPoints you add to the BoxPlot series; here too it will do the math for us

While option 3a seems rather simple I found no way to color the boxes. Here is how we can do that:

First we force the chart to copy the default colors to the series. While we're at it, let's also hide the Legend item:

S1.Color = Color.Transparent;
S1.LegendText = " ";
chart.ApplyPaletteColors()

Then we create one DataPoint in out BoxPlot series S1 for each data series; not how my series are ordered: 0=The BoxPlot, 1-6 some data series! You may need to adapt this!

for (int i = 1; i < chart.Series.Count; i++)
{
    DataPoint dp = new DataPoint();
    S1.Points.Add(dp);
    dp["BoxPlotSeries"] =  "D" + i;  // names D1-D6
    dp.Color = chart.Series[i].Color;
}

Here is the result:

Update:

Your example actually shows three boxplot series; hence the colors and most notably: the clustered (i.e. gapless) display.

This would be a way to bind the above data (from option 1) to three individual boxes:

for (int i = 0; i < 3; i++)
{
    Series bps = chart.Series.Add("BoxPlotSeries" + i);
    bps.ChartType = SeriesChartType.BoxPlot;
    var yValOne = yValues.Select(x => new[] { x[i] }).ToArray();
    bps.Points.DataBindY(yValOne);
}

Final note: Your example code contains an array with 12 doubles and also 4 boxplot series. This makes no sense. You can add the 12 values to a normal series and associate it with one boxplot series using option 3, though..

这篇关于如何在WFA中将数据添加到BoxPlot?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆