绘制经济时间序列

绘制经济时间序列

如何绘制包含来自 CSV 的时间序列元素的经济类型数据?例如:

Date GDP
2009 6
2010 3
2011 4
2012 7

答案1

例如,请参阅pgfplots手动的

手册中有很多示例,因此它不仅仅是一个方便的参考,有时滚动浏览示例也可以成为找到答案的一种方式。

代码输出

\documentclass{article}
\usepackage{pgfplots} 
\pgfplotsset{compat=1.15}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xlabel=This,
ylabel=That,
% remove comma in xticklabels
xticklabel style={/pgf/number format/set thousands separator={}},
% one tick every year
xtick distance=1
]
\addplot table {
Date GDP
2009 6
2010 3
2011 4
2012 7
};
% if you have the file, you can do
% \addplot table {datafile.csv};
\end{axis}
\end{tikzpicture}
\end{document}

相关内容