첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
------------------------------------------------------------------------------------------------------------------------------------------------------
728x90
728x170

TestProject.zip
0.01MB

▶ MainForm.cs

using System;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;

using ScottPlot;
using ScottPlot.Plottable;
using ScottPlot.Statistics;

namespace TestProject
{
    /// <summary>
    /// 메인 폼
    /// </summary>
    public partial class MainForm : Form
    {
        //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
        ////////////////////////////////////////////////////////////////////////////////////////// Public

        #region 생성자 - MainForm()

        /// <summary>
        /// 생성자
        /// </summary>
        public MainForm()
        {
            InitializeComponent();

            Plot plot = new Plot(800, 600);

            Random random = new Random(0);

            double[] valueArray = DataGen.RandomNormal(random, pointCount : 1234, mean : 178.4, stdDev : 7.6);

            (double[] countArray, double[] binEdgeArray) = Common.Histogram(valueArray, min : 140, max : 220, binSize : 1);

            double[] leftEdgeArray = binEdgeArray.Take(binEdgeArray.Length - 1).ToArray();

            BarPlot barPlot = plot.AddBar(values : countArray, positions : leftEdgeArray);

            barPlot.BarWidth        = 0.6;
            barPlot.BorderLineWidth = 0;
            barPlot.FillColor       = ColorTranslator.FromHtml("#9bc3eb");

            double[] densityArray = Common.ProbabilityDensity(valueArray, binEdgeArray, percent : true);

            ScatterPlot scatterPlot = plot.AddScatterLines(xs : binEdgeArray, ys : densityArray, lineWidth : 2);

            scatterPlot.YAxisIndex = 1;

            plot.Title("성인 남성 신장");
            plot.XAxis.Label("신장(cm)");
            plot.YAxis.Label("횟수(#)");
            plot.YAxis2.Color(scatterPlot.Color);
            plot.YAxis2.Ticks(true);
            plot.YAxis2.Label("확률(%)");
            plot.SetAxisLimits(yMin : 0);
            plot.SetAxisLimits(yMin : 0, yAxisIndex : 1);

            this.formsPlot.Reset(plot);

            this.formsPlot.Refresh();
        }

        #endregion
    }
}
728x90
그리드형(광고전용)
Posted by icodebroker
,