0%

【漫漫科研路\pgfplots】画双Y坐标图

在科研论文写作中,经常会遇到画描述tradeoff的仿真图。比如在5G相关的研究中,经常会出现能效与时延的tradeoff。本文主要介绍如何在论文仿真部分,根据仿真结果(存储于.dat文件中)绘制双Y坐标的曲线。


假定我们有两组仿真数据[x, y1] [x, y2],分布存储在y1.dat和y2.dat文件中。文件内容如下图所示:

图1

图2

画双Y坐标,主要用到了\pgfplotsset{set layers}命令。在此命令的基础上,分布在两个坐标系画图,就得到了想要的效果。相比于Matlab作图工具,这里的优势在于,可以用颜色区分两个Y轴。并且,利用pgfplots作图,图中曲线也可以被索引的优势,可以直接在y轴指明曲线类型来区分。

具体源代码如下:

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
32
33
34
35
36
\documentclass[10pt, final, journal, twocolumn, oneside]{IEEEtran}

%!TEX program = xelatex
% !TEX encoding = UTF-8 (utf8)
%!TEX spellcheck
%\def\pgfsysdriver{pgfsys-dvipdfmx.def}
\usepackage{tikz}

\usepackage{pgfplots}
\pgfplotsset{width=7cm,compat=1.14}\begin{document}
\begin{tikzpicture}
\pgfplotsset{set layers}
\begin{axis}[scale only axis,
grid=major,
axis y line*=left,
y axis line style={blue},
y tick label style={blue},
xlabel=x,
ylabel=\ref{y1}\color{blue}y1,]
\addplot [blue,mark=square] table[x index=0, y index=1,red] {y1.dat};\label{y1}
\end{axis}

\begin{axis}[scale only axis,
grid=major,
axis y line*=right,
axis x line=none,
y axis line style={red},
y tick label style={red},
ylabel=\ref{y2}\color{red}y2,
]
\addplot [red,mark=asterisk] table[x index=0, y index=1] {y2.dat};\label{y2}
\end{axis}

\end{tikzpicture}

\end{document

效果图如下:
图3

坚持原创技术分享,您的支持将鼓励我继续创作!