考虑以下 MWE
\documentclass{scrartcl}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot table [
x=grade,
y=value,
] {
grade value
1 8
2 1
3 0
4 1
5 2
6 0
7 0
8 0
9 0
10 0
11 0
};
\end{axis}
\end{tikzpicture}
\end{document}
这将给予
我需要将坐标原点放在右下角,并向左演变(但不能是负数!)。
我怎样才能在全球范围内实现这一目标?(因为我有相当多的情节需要用这种方式来处理)。