如何让 LaTeX 执行指数回归?

如何让 LaTeX 执行指数回归?

我一直在尝试为我的估计值获取一些回归,但似乎只有关于多项式和线性回归的内容。这是我用于线性的代码:

  \begin{center}
\begin{figure}[h]
    \caption{\textbf{Regressão Linear do Período de Crescimento}}
\begin{tikzpicture}
    \pgfplotsset{width=10cm,
        compat=1.3,
        legend style={font=\footnotesize}}
    \begin{axis}[
    xlabel={Ano},
    ylabel={População},
    legend cell align=left,
    legend pos=north west]
    \addplot[only marks] table[row sep=\\]{
        X Y\\ %remover estimativas de complemento
-700    80\\
-400    300\\
-200    300\\
-100    600\\
1       1250\\
100     1500\\
    };
    \addlegendentry{Estimativas}
    \addplot table[row sep=\\,
    y={create col/linear regression={y=Y}}] % compute a linear regression from the
    %input table
    {
        X Y\\
-700    80\\
-400    300\\
-200    300\\
-100    600\\
1       1250\\
100     1500\\
    };
    \addlegendentry{%
        $\pgfmathprintnumber{\pgfplotstableregressiona} \cdot x
        \pgfmathprintnumber[print sign]{\pgfplotstableregressionb}$} %
    \end{axis}
    \end{tikzpicture}
    \label{pizza_fgv}
    \end{figure}
\end{center}

结果是:

图形

我曾经使用过 Excel,我希望 LaTeX 不仅能绘图,还能达到以下上限: 在此处输入图片描述

相关内容