We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Using pgfplotstableread to load a csv seems to disable the default behavior of empty lines, which in a usual 2D plot is jump. Is it expected?
pgfplotstableread
empty lines
jump
\documentclass[]{standalone} \usepackage{pgfplots,pgfplotstable} \pgfplotsset{compat=newest} \begin{filecontents}{data1.txt} -1 -1 0 0 1 1 2 2 \end{filecontents} \begin{document} \begin{tikzpicture} \begin{axis} \addplot [color=black] table[x index =0, y index = 1,] {./data1.txt}; \end{axis} \end{tikzpicture} \begin{tikzpicture} \pgfplotstableread[x index =0, y index = 1]{data1.txt}{\mytable} \begin{axis} \addplot [color=black] table {\mytable}; \end{axis} \end{tikzpicture} \end{document}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Using
pgfplotstableread
to load a csv seems to disable the default behavior ofempty lines
, which in a usual 2D plot isjump
.Is it expected?
MWE
The text was updated successfully, but these errors were encountered: