pgfplots 线没有显示

pgfplots 线没有显示

我正在尝试通过我的数据绘制一条最佳拟合线,这就是我正在尝试做的事情。

\documentclass{report}

\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{enumerate}
\usepackage{tabularx}
\usepackage{pgfplots}

\title{Document}
\date{\today}

\begin{document}
\maketitle

\begin{center}
    \begin{tikzpicture}
        \begin{axis}[
            ymax=1.5,
            ymin=0,
            xmin=0,
            xmax=0.4,
            axis lines=middle,
            xlabel=$Mass (g)$,
            ylabel=$Period (s)$,
            title={Our Data},
            xticklabel style={
                /pgf/number format/precision=3,
                /pgf/number format/fixed
            },
        ]
            \addplot [only marks] table {
                0.1 0.428
                0.141421356237 0.529
                0.22360679775 0.729
                0.316227766017 1.131
                0.264575131106 0.931
                0.173205080757 0.648
            };
            \addplot[color=blue, samples=5, domain=0:0.4]{3.56011*x};
        \end{axis}
    \end{tikzpicture}
\end{center}

\end{document}

但我只得到了数据点,而不是最佳拟合线:

乳胶图

我尝试删除域名并调整样本,但无济于事。如何显示该行?

相关内容