无法正确标记条形图轴?

无法正确标记条形图轴?

我遇到了标记轴的问题。

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

\begin{document}
\hspace*{-1cm}\begin{tikzpicture}
    \begin{axis}[
        symbolic x coords={0.4894, 0.4920, 0.4907, 1.4872, 1.4886},
        xtick=data
      ylabel={Mean Coefficient of Friction},
      xlabel= {Cart Mass (kg)},
        ]
                \addplot[ybar,fill=blue] coordinates {
            (0.4894,   0.005274)
            (0.4920,  0.005250)
            (0.4907, 0.005201)
            (1.4872, 0.0052144)
            (1.4886, 0.0052233)
        };
    \end{axis}
\end{tikzpicture}\hspace*{-1cm}
\end{document}

答案1

代码运行正常,你只需要,添加data@jarauh提及。

在此处输入图片描述

相关内容