我一直在尝试为我的估计值获取一些回归,但似乎只有关于多项式和线性回归的内容。这是我用于线性的代码:
\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}
结果是: