Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- url reference
- linux bash
- 걸쳐서 그림 넣기
- Leetcode 70
- Python Imaging Library
- csv x range
- without nohup.out
- vi/vim commands
- latex 첨자
- 프로그래머스
- python3
- 프로그래머스 구명보트
- apt clean
- git commit message
- vi/vim 명령어
- linux prompt color
- 프로그래머스 실패율
- Climbing Stairs
- vim set noshowmatch
- tensorflow model load
- vim 괄호 비활성화
- LaTeX figure
- Resolution Changing
- VirtualBox
- gnuplot csv
- apt autoremove
- Leetcode 121
- vim 찾아 바꾸기
- vim 치환
- 프로그래머스 체육복
Archives
- Today
- Total
목록Programming/Gnuplot (2)
기억노트
[GNUplot] csv 파일 읽을 때 x range 오류
GUNplot은 기본적으로 tap과 space로 데이터를 구분하는 것 같다. 그런데 csv 파일은 ,(comma)로 값을 분류하기 때문에 아래의 코드를 사용함으로써 GNUplot에서 csv 파일 안의 데이터를 구분할 수 있다. set datafile separator ","
Programming/Gnuplot
2019. 7. 18. 12:20

예제 코드 1. plot 파일 reset set terminal png font 'arial, 11' set output 'a.png' set xtics ('0' 0, '10' 1, '20' 2, '30' 3, '40' 4) set boxwidth 0.3 set xlabel 'X label' set ylabel 'Y label' set yrange [0.4:1] set style fill pattern 2 set nokey plot 'a.txt' with boxes lc rgbcolor 'black' 2. text 파일 (a.txt) 0.5 0.6 0.7 0.8 0.9 예제 코드 설명 reset : 설정 초기화 set terminal png font 'arial, 11' : 출력을 png 파일로 설정하고..
Programming/Gnuplot
2019. 6. 12. 16:25