如何使此条形图的 x 轴间隔固定,并使其看起来像下图?

如何使此条形图的 x 轴间隔固定,并使其看起来像下图?

这是我要复制的条形图(不是数字,只是图表),

以下是我的尝试,

以下是代码,


\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}

\pgfplotsset{compat=1.18}


\begin{document}

\begin{center}
\begin{tikzpicture}
\begin{axis}[
    x tick label style={/pgf/number format/1000 sep=},
    ylabel=$\Omega_{total}$,
        xlabel=$q_A$,
        ybar interval=0.7]
\addplot 
    coordinates {(0,330) (1,210) (2,126) (3,70) (4,35) (5,15) (6,5) (7,1)};
\end{axis}
\end{tikzpicture}
\end{center}

\end{document}

您可以看到第 7 条柱状图未显示,并且 x 轴低于应有的高度。我该如何将其更改为看起来像参考图?同时更改颜色。提前谢谢您。

答案1

您可以根据自己的喜好调整轴选项。以下是起点:

\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}

\pgfplotsset{compat=1.18}

\begin{document}

    \begin{center}
        \begin{tikzpicture}
            \begin{axis}[
                x tick label style={/pgf/number format/1000 sep=},
                xlabel=$q_A$,
                axis x line*=bottom,
                ylabel=$\Omega_{total}$,
                ybar interval=0.7,
                ymin=0,
                ymax=400,
                ytick align=outside,
                axis y line*=left,
            ]
                \addplot[fill=gray!40]
                    coordinates {(0,330) (1,210) (2,126) (3,70) (4,35) (5,15) (6,5) (7,1)};
            \end{axis}
        \end{tikzpicture}
    \end{center}

\end{document}

在此处输入图片描述

相关内容