Microsoft MVP성태의 닷넷 이야기
.NET Framework: 837. C# - PLplot 사용 예제 [링크 복사], [링크+제목 복사]
조회: 13425
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 7개 있습니다.)

C# - PLplot 사용 예제

지난 글에서 설명한,

ML.NET Model Builder - 회귀(Regression), 다중 분류(Multi-class classification) 예제
; https://www.sysnet.pe.kr/2/0/11895

Regression_TaxiFarePrediction 예제를 보면,

dotnet/machinelearning-samples
; https://github.com/dotnet/machinelearning-samples/tree/master/samples/csharp/getting-started/Regression_TaxiFarePrediction

PLplot 라이브러리를 사용하는 코드와 출력 사례를 볼 수 있습니다.

plplot_sample_1.png

이참에, ^^ 간단한 사용법을 정리해 보겠습니다.




PLplot 설치를 하고,

Install-Package PLplot

* 설치 후 csproj에 다음의 항목이 추가됩니다.
<PackageReference Include="PLplot" Version="5.13.7" />

간단한 실습으로 예전에 그냥 점(dot)으로만 그려봤던,

그래프 그리기로 알아보는 뉴턴-랩슨(Newton-Raphson's method)법과 제곱근 구하기 - C#
; https://www.sysnet.pe.kr/2/0/10911

2차 방정식의 곡선을 PLplot으로 그려 보면 다음과 같습니다.

static void Main(string[] args)
{
    const int yMin = -30;
    const int yMax = 100;

    const int xMin = -20;
    const int xMax = 20;

    Func<double, double> quad = (x) => x * x - 10;

    double [] xData = PythonUtils.Range(xMin, xMax, 0.1).ToArray();
    double [] yData = (from item in xData
                            select quad(item)).ToArray();

    using (var pl = new PLStream())
    {
        pl.sdev("png");
        pl.sfnam("test.png");

        pl.spal0("cmap0_alternate.pal");

        pl.init();

        pl.env(xMin, xMax, yMin, yMax, AxesScale.Independent, AxisBox.BoxTicksLabelsAxes);
        pl.lab("x", "y = x#u2#d - 10", "Simple PLplot demo of a 2D line plot");

        pl.line(xData, yData);
        pl.gver(out var verText);
    }
}

보는 바와 같이 x 좌표의 값과 그에 대응하는 인덱스에 y 좌표의 값을 담아 pl.line 함수에 전달하기만 하면 됩니다. 그럼, 다음과 같은 이미지를 담은 PNG 파일이 생성됩니다. ^^

plplot_sample_2.png




이번엔 데이터의 분포도를 알 수 있도록 line이 아닌 점으로 표시해 보겠습니다. 데이터는 다음의 책에 있는,

기초 수학으로 이해하는 머신러닝 알고리즘
; https://wikibook.co.kr/math-for-ml/

click.csv 파일을 로드해서 pl.line만 pl.poin으로 바꿔주면,

Dictionary<string, List<double>> data = PythonUtils.Load<double>("click.csv");

List<double> xData = data["x"];
List<double> yData = data["y"];

double xMin = xData.Min() - 10;
double xMax = xData.Max() + 10;

double yMin = yData.Min() - 10;
double yMax = yData.Max() + 10;

string chartFileName = "click.svg";
using (var pl = new PLStream())
{
    pl.sdev("svg");
    pl.sfnam(chartFileName);
    pl.spal0("cmap0_alternate.pal");
    pl.init();

    pl.env(xMin, xMax, yMin, yMax, AxesScale.Independent, AxisBox.BoxTicksLabelsAxes);

    // Set scaling for mail title text 125% size of default
    // pl.schr(0, 1.25);

    // The main title
    pl.lab("X", "Y", "Click");

    //This code is the symbol to paint
    // http://personalpages.to.infn.it/~zaninett/libri/hershey.html
    char code = Symbol.Bullet; // == 17;

    // plot using different colors
    // see http://plplot.sourceforge.net/examples.php?demo=02 for palette indices
    //pl.col0(9); //Light Green
    //pl.col0(4); //Red
    pl.col0(2); //Blue

    pl.poin(xData.ToArray(), yData.ToArray(), code);

    // end page (writes output to disk)
    pl.eop();

    // output version of PLplot
    pl.gver(out var verText);
}

다음과 같은 출력의 svg 파일이 생성됩니다.

plplot_sample_3.png

(첨부 파일은 이 글의 예제 코드를 포함합니다.)

간단하죠? ^^ 좀 더 알고 싶다면 온라인 도움말을 참고할 수 있습니다.

API Reference manual
; https://surban.github.io/PLplotNet/api/PLplot.PLStream.html

그렇긴 해도 역시나 레퍼런스 매뉴얼보다는, 다른 사람들이 작성한 예제 코드와 그것의 출력 결과를 통해 익히는 것이 가장 빠릅니다. ^^




참고로, 예전에 OxyPlot을 소개한 적이 있습니다.

C# Plotting 라이브러리 OxyPlot
; https://www.sysnet.pe.kr/2/0/10973

입맛에 맞는 걸로 쓰시면 되겠죠? ^^ 게다가 아예 언어를 바꾸는 것도 고려해볼만합니다. 예를 들어 이 글의 그래프를 그리는 코드를 R 언어로 바꾸면 다음과 같이 아주 간단하게 표현할 수 있습니다.

x = seq(from=-20, to=20, by=0.1)
y = x * x - 10
plot(x, y, col="gray", type="l") // 숫자 1이 아닌, 소문자 'l'




마지막으로 PLplot 사용 시 오류 발생 상황을 정리해 보겠습니다. "using (var pl = new PLStream())" 코드 수행 시 다음과 같은 예외가 발생한다면?

System.TypeInitializationException
  HResult=0x80131534
  Message=The type initializer for 'PLplot.Native' threw an exception.
  Source=PLplotNet
  StackTrace:
   at PLplot.Native.mkstrm(Int32& p_strm)
   at PLplot.PLStream..ctor() in C:\projects\plplotnet\PLplotNet\PLStream.cs:line 23
   at ConsoleApp1.Program.Main(String[] args) in E:\ConsoleApp1\ConsoleApp1\Program.cs:line 21

Inner Exception 1:
InvalidOperationException: Cannot find support PLplot support files in System.String[].

이게 좀 원인이 복잡합니다. 일반적으로 NuGet 패키지를 PackageReference로 참조하면,

Visual Studio 2017 - NuGet 패키지를 직접 참조하는 PackageReference 지원
; https://www.sysnet.pe.kr/2/0/11281

솔루션 파일이 있는 폴더의 /packages 하위 폴더에 라이브러리가 구성되지 않고 "%USERPROFILE%\.nuget\packages\plplot\5.13.7\runtimes\win-x64\native" 폴더에 놓이게 됩니다. 여기서 문제는, native 구성 요소는 nuget cache 폴더에 있는 반면, managed 구성 요소인 "PLplotNet.dll" 파일이 프로젝트의 출력 폴더(/bin/Debug)에 놓인다는 점입니다. 이 때문에 PLplotNet.dll은 현재 디렉터리에서 네이티브 dll을 찾으려 하고 그것이 없어 저런 식으로 오류가 발생하는 것입니다.

따라서 간단하게 문제를 해결하려면 "%USERPROFILE%\.nuget\packages\plplot\5.13.7\runtimes\win-x64\native" 폴더의 모든 파일을 프로젝트의 출력 폴더에 복사해 놓는 것입니다. 단지 그러면 바이너리 폴더의 내용이 너무 많아 귀찮아지므로 privatePath를 이용해,

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
    </startup>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <probing privatePath=".\plplot" />
        </assemblyBinding>
    </runtime>
</configuration>

다음과 같이 선처리를 해주면 됩니다.

using System;
using System.IO;
using System.Reflection;

class PLPlotEnv
{
    const string ManagedDllFileName = @"PLplotNet.dll";
    public static void SetEnv()
    {
        do
        {
            if (File.Exists(@".\plplot\plplot.dll") == true)
            {
                break;
            }

            if (File.Exists(ManagedDllFileName) == false)
            {
                break;
            }

            Version ver = AssemblyName.GetAssemblyName(ManagedDllFileName).Version;
            string versionText = $"{ver.Major}.{ver.Minor}.{ver.Build}";

            string path = Environment.ExpandEnvironmentVariables($@"%USERPROFILE%\.nuget\packages\plplot\{versionText}\runtimes\win-x64\native");
            if (Directory.Exists(path) == false)
            {
                break;
            }

            string targetPath = Path.GetDirectoryName(typeof(PLPlotEnv).Assembly.Location);
            targetPath = Path.Combine(targetPath, "plplot");
            DirectoryCopy(path, targetPath, true);

        } while (false);

        CopyPLplotNetFile();

        // Environment.SetEnvironmentVariable("PLPLOT_LIB", ...);
    }

    private static void CopyPLplotNetFile()
    {
        if (File.Exists(ManagedDllFileName) == false)
        {
            return;
        }

        if (File.Exists($@".\plplot\{ManagedDllFileName}") == false)
        {
            File.Copy(ManagedDllFileName, $@".\plplot\{ManagedDllFileName}");
        }

        File.Delete(ManagedDllFileName);
    }

    // https://learn.microsoft.com/ko-kr/dotnet/standard/io/how-to-copy-directories
    private static void DirectoryCopy(string sourceDirName, string destDirName, bool copySubDirs)
    {
        // Get the subdirectories for the specified directory.
        DirectoryInfo dir = new DirectoryInfo(sourceDirName);

        if (!dir.Exists)
        {
            throw new DirectoryNotFoundException(
                "Source directory does not exist or could not be found: "
                + sourceDirName);
        }

        DirectoryInfo[] dirs = dir.GetDirectories();
        // If the destination directory doesn't exist, create it.
        if (!Directory.Exists(destDirName))
        {
            Directory.CreateDirectory(destDirName);
        }

        // Get the files in the directory and copy them to the new location.
        FileInfo[] files = dir.GetFiles();
        foreach (FileInfo file in files)
        {
            string temppath = Path.Combine(destDirName, file.Name);
            file.CopyTo(temppath, false);
        }

        // If copying subdirectories, copy them and their contents to new location.
        if (copySubDirs)
        {
            foreach (DirectoryInfo subdir in dirs)
            {
                string temppath = Path.Combine(destDirName, subdir.Name);
                DirectoryCopy(subdir.FullName, temppath, copySubDirs);
            }
        }
    }
}

참고로, 이 문제가 .NET Core 프로젝트에서 NuGet 참조를 한 경우에는 발생하지 않습니다. 왜냐하면, .NET Core 프로젝트는 빌드 시 Managed DLL인 PLplotNet.dll을 빌드 출력 폴더(/bin/debug)에 복사하지 않고 nuget cache 폴더로부터 직접 로드하기 때문입니다.

그건 그렇고, 예제에 보면 PLPLOT_LIB 환경 변수가 나오는데,

_putenv_s("PLPLOT_LIB", supPath);

이게 통하지 않습니다. (혹시 이에 대해 아시는 분은 덧글 부탁드립니다.)




또는 다음과 같은 오류가 발생한다면?

System.BadImageFormatException
  HResult=0x8007000B
  Message=An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)
  Source=PLplotNet
  StackTrace:
   at PLplot.Native.mkstrm(Int32& p_strm)
   at PLplot.PLStream..ctor() in C:\projects\plplotnet\PLplotNet\PLStream.cs:line 23
   at ConsoleApp1.Program.Main(String[] args) in E:\ConsoleApp1\ConsoleApp1\Program.cs:line 22

현재 nuget에 올라온 plplot은 네이티브 바이너리가 win-x64와 linux-x64 밖에 없으므로 x86으로 구동하는 응용 프로그램으로는 로드할 수 없습니다. 따라서 자신의 프로젝트에 "Prefer 32-bit" 옵션이 켜져 있거나 "x86" 대상으로 빌드했다면 저렇게 BadImageFormatException이 발생합니다.

만약 x86이 굳이 필요하다면, plplot을 x86으로 빌드해 사용하면 됩니다. vcpkg가 이미 제공하므로 어렵지 않게 구성할 수 있을 것입니다.

E:\git_clone\vcpkg> vcpkg search plplot
plplot               5.13.0-1         PLplot is a cross-platform software package for creating scientific plots whos...
plplot[wxwidgets]                     plplot wxwidgets module




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 3/9/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2019-05-31 12시17분
C# - PLplot 색상 제어
; http://www.sysnet.pe.kr/2/0/11920
정성태

... 16  17  18  19  20  21  22  [23]  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13046정성태5/5/20226772.NET Framework: 2002. C# XingAPI - ACF 파일을 이용한 퀀트 종목 찾기(t1857)
13045정성태5/5/20226833.NET Framework: 2001. C# XingAPI - 주식 종목에 따른 PBR, PER, ROE 구하는 방법(t3341 예제)
13044정성태5/4/20226299오류 유형: 808. error : clang++ exited with code 127
13043정성태5/3/20225933오류 유형: 807. C# - 닷넷 응용 프로그램에서 Informix DB 사용 시 오류 메시지 정리
13042정성태5/3/20226322.NET Framework: 2000. C# - 닷넷 응용 프로그램에서 Informix DB 사용 방법파일 다운로드1
13041정성태4/28/20226586개발 환경 구성: 642. Informix 데이터베이스 docker 환경 구성
13040정성태4/27/20227124VC++: 156. 비주얼 스튜디오 - Linux C/C++ 프로젝트에서 openssl 링크하는 방법
13039정성태4/27/20227886.NET Framework: 1999. C# - Playwright를 이용한 간단한 브라우저 제어 실습
13038정성태4/26/20225804오류 유형: 806. twine 실행 시 ConfigParser.ParsingError: File contains parsing errors: /root/.pypirc
13037정성태4/25/20226114.NET Framework: 1998. Azure Functions를 사용한 간단한 실습
13036정성태4/24/20226840.NET Framework: 1997. C# - nano 시간을 가져오는 방법 [2]
13035정성태4/22/20227400Windows: 204. Windows 10부터 바뀐 QueryPerformanceFrequency, QueryPerformanceCounter
13034정성태4/21/20226819.NET Framework: 1996. C# XingAPI - 주식 종목에 따른 PBR, PER, ROE, ROA 구하는 방법(t3320, t8430 예제)파일 다운로드1
13033정성태4/18/20227410.NET Framework: 1195. C# - Thread.Yield와 Thread.Sleep(0)의 차이점(?)
13032정성태4/17/20227119오류 유형: 805. Github의 50MB 파일 크기 제한 - warning: GH001: Large files detected. You may want to try Git Large File Storage
13031정성태4/15/20226662.NET Framework: 1194. C# - IdealProcessor와 ProcessorAffinity의 차이점
13030정성태4/15/20226343오류 유형: 804. 정규 표현식 오류 - Quantifier {x,y} following nothing.
13029정성태4/14/20226754Windows: 203. iisreset 후에도 이전에 설정한 전역 환경 변수가 w3wp.exe에 적용되는 문제
13028정성태4/13/20226666.NET Framework: 1193. (appsettings.json처럼) web.config의 Debug/Release에 따른 설정 적용
13027정성태4/12/20226942.NET Framework: 1192. C# - 환경 변수의 변화를 알리는 WM_SETTINGCHANGE Win32 메시지 사용법파일 다운로드1
13026정성태4/11/20228446.NET Framework: 1191. C 언어로 작성된 FFmpeg Examples의 C# 포팅 전체 소스 코드 [3]
13025정성태4/11/20227809.NET Framework: 1190. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 vaapi_encode.c, vaapi_transcode.c 예제 포팅
13024정성태4/7/20226320.NET Framework: 1189. C# - 런타임 환경에 따라 달라진 AppDomain.GetCurrentThreadId 메서드
13023정성태4/6/20226633.NET Framework: 1188. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 transcoding.c 예제 포팅 [3]
13022정성태3/31/20226513Windows: 202. 윈도우 11 업그레이드 - "PC Health Check"를 통과했지만 여전히 업그레이드가 안 되는 경우 해결책
13021정성태3/31/20226672Windows: 201. Windows - INF 파일을 이용한 장치 제거 방법
... 16  17  18  19  20  21  22  [23]  24  25  26  27  28  29  30  ...