
Quero filtrar alguns dados para um gráfico e até agora a melhor coisa que encontrei éisso aqui.
Este é o código relevante da pergunta mencionada:
\pgfplotsset{
discard if not and smaller/.style n args={4}{
x filter/.code={
\edef\tempa{\thisrow{#1}}
\edef\tempb{#2}
\edef\tempc{\thisrow{#3}}
\edef\tempd{#4}
\ifnum\tempa=\tempb
\ifnum\tempc<\tempd
\def\pgfmathresult{inf}
\else
\fi
\else
\def\pgfmathresult{inf}
\fi
}
}
}
\begin{tikzpicture}
\begin{axis}
\addplot [ultra thick,
black,
discard if not and smaller={P}{0}{X}{5}] table [x=X, y=Y] {data.dat};
\end{tikzpicture}
Pelo que vejo, condicionais \ifnum
funcionam apenas com números inteiros. Então tentei substituí-lo por dimensão, pois preciso de carros alegóricos. E quero verificar a desigualdade (ou seja, os dados devem estar dentro de um determinado intervalo)
\pgfplotsset{
discard if out of range/.style n args={3}{
x filter/.code={
\edef\tempa{\thisrow{#1}}
\edef\tempb{#2}
\edef\tempc{#3}
\ifdim\tempa pt> \tempb pt
\ifdim\tempa pt< \tempc pt
\else
\def\pgfmathresult{inf}
\fi
\else
\def\pgfmathresult{inf}
\fi
}
}
}
Porém, sempre recebo um erro: Missing number, treated as zero.
na linha de \addplot
utilização da nova opção. Eu acho que pode ter a ver com a forma como Tex e pgfplots avaliam a expressão, \thisrow{#1}
mas não tenho ideia de como descobrir isso ...
Finalmente, um exemplo completo:
\documentclass{standalone}
\usepackage{pgfplots,pgfplotstable,filecontents}
\begin{filecontents}{file.dat}
x y z
0 1 2
2 3 3.5
3 4 5
\end{filecontents}
\pgfplotsset{
discard if out of range/.style n args={3}{
x filter/.code={
\edef\tempa{\thisrow{#1}}
\edef\tempb{#2}
\edef\tempc{#3}
\ifdim\tempa pt> \tempb pt
\ifdim\tempa pt< \tempc pt
\else
\def\pgfmathresult{inf}
\fi
\else
\def\pgfmathresult{inf}
\fi
}
}
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[unbounded coords=discard ,filter discard warning=false,]
\pgfplotstableread{file.dat}\datatable
\addplot[scatter,point meta=explicit,] table [
meta = z,
discard if out of range={x}{0.5}{4},
] from \datatable {};
\end{axis}
\end{tikzpicture}
\end{document}
Responder1
Se você deseja apenas filtrar valores em um intervalo fechado, você deve usar a chave restrict x to domain=<min>:<max>
já mencionada nocomente a pergunta.
Aqui está um MWE real usando esse recurso do código fornecido.
\begin{filecontents}{file.dat}
x y z
0 1 2
2 3 3.5
3 4 5
\end{filecontents}
\documentclass[border=2mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\pgfplotstableread{file.dat}\datatable
% without restricting the domain
\addplot+ [very thick] table {\datatable};
% with restricting the domain
\addplot table [
restrict x to domain=0.5:4,
] {\datatable};
\end{axis}
\end{tikzpicture}
\end{document}