↧
Answer by John Kormylo for Loop over pgfplotstable rows
You can pull off individual elements using \pgfplotstablegetelem.\documentclass{standalone}\usepackage{tikz}\usepackage{pgfplots}\usepackage{pgfplotstable}\begin{document}\pgfplotstableread{x y1 22...
View ArticleAnswer by Sam for Loop over pgfplotstable rows
After some fiddling around I came up with a solution that still leaves plenty of room for improvement. For example, I don't know how to instruct pgfplots to use the cycle list to color the lines,...
View ArticleLoop over pgfplotstable rows
I wan't to draw tikz picture based on data loaded from pgf table. Can I somehow use it like standard \foreach?\foreach \i/\j in {\mytable} \draw...What I found is \pgfplotstableforeachcolumn but it...
View Article