如何移动原点或者镜像坐标系?

如何移动原点或者镜像坐标系?

考虑以下 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}

这将给予

在此处输入图片描述

我需要将坐标原点放在右下角,并向左演变(但不能是负数!)。

我怎样才能在全球范围内实现这一目标?(因为我有相当多的情节需要用这种方式来处理)。

答案1

您可以使用

x dir=reverse

逆转 x 轴的‘增长’。

使设置全局使用

\pgfplotsset{compat=newest,x dir=reverse}

在此处输入图片描述

相关内容