일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- metasurface
- Photolithography
- 나노포토닉스
- 토막잭슨
- 학술지
- 물리학
- 자연 광자학
- 과학
- 리눅스
- gnuplot
- 광자학
- Jackson Electrodynamics
- 양자 플라즈몬
- 그래프
- Linux
- 논문
- 메타물질
- 자연 나노기술
- 메타표면
- 초록빛논문
- 자연
- nature photonics
- impact factor
- octopus
- 우분투
- 겨울떨개
- 플라즈몬
- 전자기학
- TDDFT
- 3분논문
- Today
- Total
과꾸로
[gnuplot] xticlabels - x축값. 숫자대신 글자. xtics in string 본문
[gnuplot] xticlabels - x축값. 숫자대신 글자. xtics in string
가로축 또는 세로축의 값을 숫자대신 글자로 넣는 법을 찾아보았는데, xticlabels라는 명령어가 있었다.
링크:
http://gnuplot.sourceforge.net/docs_4.2/node135.html
다음과 같이 쓰면 된다.
plot 'datafile' using <xcol>:<ycol>:xticlabels(<labelcol>) with <plotstyle>
3차원 그래프인 splot 명령어에도 적용할 수 있다.
splot "data" using 2:4:6:xtic(1):ytic(3):ztic(6)
직접 그려보았다.
예제)
gnuplot source code
#!/usr/bin/gnuplot reset set terminal pngcairo size 1000,1200 enhanced font 'Verdana,22' set pointsize 3 set key reverse bottom Left set xtics rotate by 45 offset -2,-1.2 set ytics 5,1,9 set mytics 2 set title 'xticlabels' font 'Verdana, 32' set xlabel 'Month' offset 0,-1.8 set ylabel 'Value' set output 'xticslabel.png' set yrange[5:9] plot for [ii=2:6] 'xticslabel.dat' u (column(ii)):xticlabels(1) w lp pt ii+4 lw 6 lc ii-1 title columnhead(ii)
xticslabel.dat 파일
Month A B C D E "Jan" 7.2 7.5 5.6 6.5 6.7 "Feb" 8.3 7.0 6.0 5.9 7.1 "Mar" 8.8 7.5 7.4 6.5 7.2 "Apr" 7.5 8.1 6.9 7.0 7.3 "May" 8.5 7.5 6.3 7.0 7.0 "Jun" 7.5 8.5 6.5 7.5 7.5 "Jul" 8.0 9.0 6.9 7.5 8.0
끝.
2016년 8월 8일
겨울떨개
'연구자료' 카테고리의 다른 글
[파워포인트] 도형 복사해서 같은 자리에 놓기 (0) | 2016.08.30 |
---|---|
[Photolithography] Spin-coating, baking, exposure and development conditions: AZ-series (3) | 2016.08.08 |
[Photolithography] 실험방법, 주의사항 정리 (0) | 2016.07.25 |
NKT Super continuum laser 사용법 (0) | 2016.07.21 |
[Linux] 리눅스 find 명령어 사용법 (0) | 2016.07.19 |