Bash를 사용하여 gnuplot 플로팅 자동화

Bash를 사용하여 gnuplot 플로팅 자동화

오류 범위가 있는 꺾은선형 차트로 플롯하고 다른 png 파일로 출력해야 하는 파일이 6개 있습니다. 파일 형식은 다음과 같습니다.

두 번째 평균 최소값 최대값

이러한 그래프를 자동으로 그리는 방법은 무엇입니까? 그래서 bash.sh라는 파일을 실행하여 6개의 파일을 가져와 그래프를 다른 .png파일로 출력합니다. 제목 및 축 레이블도 필요합니다.

답변1

내가 올바르게 이해했다면 이것이 당신이 원하는 것입니다.

for FILE in *; do
    gnuplot <<- EOF
        set xlabel "Label"
        set ylabel "Label2"
        set title "Graph title"   
        set term png
        set output "${FILE}.png"
        plot "${FILE}" using 1:2:3:4 with errorbars
EOF
done

이는 파일이 모두 현재 디렉터리에 있다고 가정합니다. 위는 차트를 생성하는 bash 스크립트입니다. 개인적으로 저는 보통 어떤 형태의 스크립트(gnuplot 명령 파일이라고 부름 gnuplot_in)를 사용하여 gnuplot 명령 파일을 작성하고, 각 파일에 대해 위 명령을 사용하고 gnuplot < gnuplot_in.

예를 들어 Python에서 다음을 수행합니다.

#!/usr/bin/env python3
import glob
commands=open("gnuplot_in", 'w')
print("""set xlabel "Label"
set ylabel "Label2"
set term png""", file=commands)

for datafile in glob.iglob("Your_file_glob_pattern"):
    # Here, you can tweak the output png file name.
    print('set output "{output}.png"'.format( output=datafile ), file=commands )
    print('plot "{file_name}" using 1:2:3:4 with errorbars title "Graph title"'.format( file_name = datafile ), file=commands)

commands.close()

데이터 파일의 이름을 설명하는 내용은 어디에 Your_file_glob_pattern있습니까 *? *dat물론 glob모듈 대신 모듈을 사용할 수도 있습니다. os실제로 파일 이름 목록을 생성하는 것은 무엇이든 가능합니다.

답변2

임시 명령 파일을 사용하는 Bash 솔루션:

echo > gnuplot.in 
for FILE in *; do
    echo "set xlabel \"Label\"" >> gnuplot.in
    echo "set ylabel \"Label2\"" >> gnuplot.in
    echo "set term png" >> gnuplot.in
    echo "set output \"${FILE}.png\" >> gnuplot.in
    echo "plot \"${FILE}\" using 1:2:3:4 with errorbars title \"Graph title\"" >> gnuplot.in
done
gnuplot gnuplot.in

답변3

이것이 도움이 될 수 있습니다.

#set terminal postfile       (These commented lines would be used to )
#set output  "d1_plot.ps"    (generate a postscript file.            )
set title "Energy vs. Time for Sample Data"
set xlabel "Time"
set ylabel "Energy"
plot "d1.dat" with lines
pause -1 "Hit any key to continue"

스크립트 파일을 gnuplot filename.

자세한 내용을 보려면 여기를 클릭하세요.

관련 정보