Eu tenho uma tabela contendo um sinalizador e valores x e y. Gostaria de ter uma regressão para todas as linhas com 1 na primeira coluna. Como posso fazer isso?
\documentclass{article}
\usepackage{array}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\usepackage{pgfplotstable}
\begin{document}
\pgfplotstableread{
Exmpl a v
1 0 0
1 1 1
1 2 1
1 3 4
2 0 -0
2 1 -1
2 2 -1
2 3 -4
} \data
\begin{tikzpicture}
\begin{axis} % [legend pos=outer north east]
\addplot table [x=a, y=v] {\data};
\addplot table [x=a, y={create col/linear regression={y=v}}] {\data};
\end{axis}
\end{tikzpicture}
\end{document}
Eu acho que os filtros pgfplots não se aplicam aqui, pois acho que o pgfplots obtém apenas os valores xey. Seria ótimo se houvesse a possibilidade de criar uma tabela filtrada e fazer a regressão e plotar a partir daí.
Responder1
Acho que tenho quase a solução com a ajuda de duas perguntas: Crie uma tabela de contingência usando pgfplotstablee Acessando elementos individuais da tabela com pgfplots? A ideia é transpor a matriz, criar uma nova matriz, percorrer todas as colunas e copiar as colunas, se o valor do Exmpl for 1.
\documentclass{article}
\usepackage{array}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\usepackage{pgfplotstable}
\usepackage{ifthen}
\newcommand{\pgfplotstablefilterrows}[3]
{
\pgfplotstablegetrowsof{#1}
\pgfmathsetmacro{\NumOfRows}{\pgfplotsretval}
\pgfmathsetmacro{\MaxRow}{\NumOfRows-1}
\pgfplotstablegetcolsof{#1}
\pgfmathsetmacro{\NumOfCols}{\pgfplotsretval}
\pgfplotstabletranspose{\TransposedData}{#1}
\pgfplotstableset{create on use/TransposedHead/.style={copy column from table={\TransposedData}{[index]0}}}
\pgfplotstablenew[columns={TransposedHead}]{\NumOfCols}{\TransposedFilteredData}
\pgfplotsforeachungrouped \pgfplotstablerowindex in {0,1,...,\MaxRow}{ % Row loop
#3
}
\pgfplotstabletranspose[colnames from=TransposedHead,input colnames to=]{#2}{\TransposedFilteredData}
\pgfplotstableclear{\TransposedData}
\pgfplotstableclear{\TransposedFilteredData}
}
\begin{document}
\pgfplotstableread{
Exmpl a v
1 0 0
1 1 1
1 2 1
1 3 4
2 0 -0
2 1 -1
2 2 -1
2 3 -4
} \data
\pgfplotstablefilterrows{\data}{\FilteredData}
{
\pgfplotstablegetelem{\pgfplotstablerowindex}{[index]0}\of\data
\ifthenelse{\equal{\pgfplotsretval}{1}}
{
\pgfplotstablecreatecol[copy column from table={\TransposedData}{\pgfplotstablerowindex}]{\pgfplotstablerowindex}{\TransposedFilteredData}
}
{}
}
\begin{tikzpicture}
\begin{axis} % [legend pos=outer north east]
\addplot table [x=a, y=v] {\data};
\addplot table [x=a, y={create col/linear regression={y=v}}] {\FilteredData}; % compute a linear regression from the input table
\end{axis}
\end{tikzpicture}
\end{document}
Como você pode ver no código, não tenho muita experiência em programação em látex. De qualquer forma, funciona. Atenciosamente, Juhui